Bug 1550804 - Add color scheme simulation to the inspector. r=pbro
[gecko.git] / js / ipc / moz.build
blob72865894b0893ba8a39f927159b9ce3d15af9629
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 UNIFIED_SOURCES += [
8     'JavaScriptChild.cpp',
9     'JavaScriptParent.cpp',
10     'JavaScriptShared.cpp',
11     'WrapperAnswer.cpp',
12     'WrapperOwner.cpp',
15 IPDL_SOURCES += [
16     'JavaScriptTypes.ipdlh',
17     'PJavaScript.ipdl',
20 include('/ipc/chromium/chromium-config.mozbuild')
22 FINAL_LIBRARY = 'xul'
24 DEFINES['BIN_SUFFIX'] = '"%s"' % CONFIG['BIN_SUFFIX']
26 EXPORTS.mozilla.jsipc = [
27     'CpowHolder.h',
28     'CrossProcessObjectWrappers.h',
31 LOCAL_INCLUDES += [
32     '/dom/base',
33     '/js/ipc',
34     '/js/src',
35     '/js/xpconnect/src',
36     '/js/xpconnect/wrappers',
39 if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
40     CXXFLAGS += ['-Wno-shadow']