OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'ipc.gypi', | 10 'ipc.gypi', |
11 ], | 11 ], |
12 'targets': [ | 12 'targets': [ |
13 { | 13 { |
14 'target_name': 'ipc', | 14 'target_name': 'ipc', |
15 'type': '<(component)', | 15 'type': '<(component)', |
16 'variables': { | 16 'variables': { |
17 'ipc_target': 1, | 17 'ipc_target': 1, |
18 }, | 18 }, |
19 'dependencies': [ | 19 'dependencies': [ |
20 '../base/base.gyp:base', | 20 '../base/base.gyp:base', |
21 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. | 21 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. |
22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 23 '../crypto/crypto.gyp:crypto', |
23 ], | 24 ], |
24 # TODO(gregoryd): direct_dependent_settings should be shared with the | 25 # TODO(gregoryd): direct_dependent_settings should be shared with the |
25 # 64-bit target, but it doesn't work due to a bug in gyp | 26 # 64-bit target, but it doesn't work due to a bug in gyp |
26 'direct_dependent_settings': { | 27 'direct_dependent_settings': { |
27 'include_dirs': [ | 28 'include_dirs': [ |
28 '..', | 29 '..', |
29 ], | 30 ], |
30 }, | 31 }, |
31 }, | 32 }, |
32 { | 33 { |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 'target_name': 'ipc_win64', | 151 'target_name': 'ipc_win64', |
151 'type': '<(component)', | 152 'type': '<(component)', |
152 'variables': { | 153 'variables': { |
153 'ipc_target': 1, | 154 'ipc_target': 1, |
154 }, | 155 }, |
155 'dependencies': [ | 156 'dependencies': [ |
156 '../base/base.gyp:base_win64', | 157 '../base/base.gyp:base_win64', |
157 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is | 158 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is |
158 # suspect. | 159 # suspect. |
159 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations_win64', | 160 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations_win64', |
| 161 '../crypto/crypto.gyp:crypto_nacl_win64', |
160 ], | 162 ], |
161 # TODO(gregoryd): direct_dependent_settings should be shared with the | 163 # TODO(gregoryd): direct_dependent_settings should be shared with the |
162 # 32-bit target, but it doesn't work due to a bug in gyp | 164 # 32-bit target, but it doesn't work due to a bug in gyp |
163 'direct_dependent_settings': { | 165 'direct_dependent_settings': { |
164 'include_dirs': [ | 166 'include_dirs': [ |
165 '..', | 167 '..', |
166 ], | 168 ], |
167 }, | 169 }, |
168 'configurations': { | 170 'configurations': { |
169 'Common_Base': { | 171 'Common_Base': { |
(...skipping 23 matching lines...) Expand all Loading... |
193 'ipc_perftests', | 195 'ipc_perftests', |
194 ], | 196 ], |
195 'variables': { | 197 'variables': { |
196 'test_suite_name': 'ipc_perftests', | 198 'test_suite_name': 'ipc_perftests', |
197 }, | 199 }, |
198 'includes': [ '../build/apk_test.gypi' ], | 200 'includes': [ '../build/apk_test.gypi' ], |
199 }], | 201 }], |
200 }], | 202 }], |
201 ], | 203 ], |
202 } | 204 } |
OLD | NEW |