Bug 1287002: Skeleton moz.build for ipc/mscom directory; r?billm draft
authorAaron Klotz <aklotz@mozilla.com>
Fri, 03 Jun 2016 12:29:21 -0600
changeset 389243 3b935a767ef177e3dd10cf33ad770d1e09b7a9d2
parent 389110 69a9474a32061e0afc22ad93f0683934cff0c531
child 389244 7cc325c7502203a7819ca70ae8665a770ee69f9f
push id23333
push useraklotz@mozilla.com
push dateMon, 18 Jul 2016 20:50:01 +0000
reviewersbillm
bugs1287002
milestone50.0a1
Bug 1287002: Skeleton moz.build for ipc/mscom directory; r?billm MozReview-Commit-ID: 4SDUWyTCppL
ipc/moz.build
ipc/mscom/moz.build
--- a/ipc/moz.build
+++ b/ipc/moz.build
@@ -24,9 +24,12 @@ if CONFIG['MOZ_B2G_RIL'] or CONFIG['MOZ_
     DIRS += ['unixfd', 'unixsocket']
 
 if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
     DIRS += ['hal', 'keystore', 'netd']
 
 if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
     DIRS += ['contentproc']
 
+if CONFIG['OS_ARCH'] == 'WINNT':
+    DIRS += ['mscom']
+
 DIRS += ['app']
new file mode 100644
--- /dev/null
+++ b/ipc/mscom/moz.build
@@ -0,0 +1,15 @@
+# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+EXPORTS.mozilla.mscom += [
+]
+
+UNIFIED_SOURCES += [
+]
+
+include('/ipc/chromium/chromium-config.mozbuild')
+
+FINAL_LIBRARY = 'xul'