OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'includes': [ | 6 'includes': [ |
7 'mojo_variables.gypi', | 7 'mojo_variables.gypi', |
8 ], | 8 ], |
9 'target_defaults' : { | 9 'target_defaults' : { |
10 'include_dirs': [ | 10 'include_dirs': [ |
11 'src', | 11 'src', |
12 ], | 12 ], |
13 'direct_dependent_settings': { | 13 'direct_dependent_settings': { |
14 'include_dirs': [ | 14 'include_dirs': [ |
15 'src', | 15 'src', |
16 ], | 16 ], |
17 }, | 17 }, |
18 }, | 18 }, |
19 'targets': [ | 19 'targets': [ |
20 { | 20 { |
21 # GN version: //mojo/edk/system | 21 # GN version: //mojo/edk/system |
22 'target_name': 'mojo_system_impl', | 22 'target_name': 'mojo_system_impl', |
23 'type': '<(component)', | 23 'type': '<(component)', |
24 'dependencies': [ | 24 'dependencies': [ |
25 '../../base/base.gyp:base', | 25 '../../base/base.gyp:base', |
26 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 26 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 27 '../../crypto/crypto.gyp:crypto', |
27 ], | 28 ], |
28 'includes': [ | 29 'includes': [ |
29 'mojo_edk_system_impl.gypi', | 30 'mojo_edk_system_impl.gypi', |
30 ], | 31 ], |
31 }, | 32 }, |
32 { | 33 { |
33 # GN version: //mojo/edk/js | 34 # GN version: //mojo/edk/js |
34 'target_name': 'mojo_js_lib', | 35 'target_name': 'mojo_js_lib', |
35 'type': 'static_library', | 36 'type': 'static_library', |
36 'dependencies': [ | 37 'dependencies': [ |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 'type': 'static_library', | 80 'type': 'static_library', |
80 'dependencies': [ | 81 'dependencies': [ |
81 '../../base/base.gyp:base', | 82 '../../base/base.gyp:base', |
82 '../../base/base.gyp:test_support_base', | 83 '../../base/base.gyp:test_support_base', |
83 '../../testing/gtest.gyp:gtest', | 84 '../../testing/gtest.gyp:gtest', |
84 'mojo_system_impl', | 85 'mojo_system_impl', |
85 ], | 86 ], |
86 'sources': [ | 87 'sources': [ |
87 'src/mojo/edk/test/multiprocess_test_helper.cc', | 88 'src/mojo/edk/test/multiprocess_test_helper.cc', |
88 'src/mojo/edk/test/multiprocess_test_helper.h', | 89 'src/mojo/edk/test/multiprocess_test_helper.h', |
| 90 'src/mojo/edk/test/scoped_ipc_support.cc', |
| 91 'src/mojo/edk/test/scoped_ipc_support.h', |
89 'src/mojo/edk/test/test_utils.h', | 92 'src/mojo/edk/test/test_utils.h', |
90 'src/mojo/edk/test/test_utils_posix.cc', | 93 'src/mojo/edk/test/test_utils_posix.cc', |
91 'src/mojo/edk/test/test_utils_win.cc', | 94 'src/mojo/edk/test/test_utils_win.cc', |
92 ], | 95 ], |
93 'conditions': [ | 96 'conditions': [ |
94 ['OS=="ios"', { | 97 ['OS=="ios"', { |
95 'sources!': [ | 98 'sources!': [ |
96 'src/mojo/edk/test/multiprocess_test_helper.cc', | 99 'src/mojo/edk/test/multiprocess_test_helper.cc', |
97 ], | 100 ], |
98 }], | 101 }], |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 ], | 134 ], |
132 'conditions': [ | 135 'conditions': [ |
133 ['OS=="win" and target_arch=="ia32"', { | 136 ['OS=="win" and target_arch=="ia32"', { |
134 'targets': [ | 137 'targets': [ |
135 { | 138 { |
136 'target_name': 'mojo_system_impl_win64', | 139 'target_name': 'mojo_system_impl_win64', |
137 'type': '<(component)', | 140 'type': '<(component)', |
138 'dependencies': [ | 141 'dependencies': [ |
139 '../../base/base.gyp:base_win64', | 142 '../../base/base.gyp:base_win64', |
140 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:
dynamic_annotations_win64', | 143 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:
dynamic_annotations_win64', |
| 144 '../../crypto/crypto.gyp:crypto_nacl_win64', |
141 ], | 145 ], |
142 'includes': [ | 146 'includes': [ |
143 'mojo_edk_system_impl.gypi', | 147 'mojo_edk_system_impl.gypi', |
144 ], | 148 ], |
145 'configurations': { | 149 'configurations': { |
146 'Common_Base': { | 150 'Common_Base': { |
147 'msvs_target_platform': 'x64', | 151 'msvs_target_platform': 'x64', |
148 }, | 152 }, |
149 }, | 153 }, |
150 }, | 154 }, |
151 ], | 155 ], |
152 }], | 156 }], |
153 ], | 157 ], |
154 } | 158 } |
OLD | NEW |