| 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. | |
| 22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | |
| 23 '../mojo/mojo_public.gyp:mojo_cpp_bindings', | 21 '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 24 '../mojo/mojo_public.gyp:mojo_cpp_system', | 22 '../mojo/mojo_public.gyp:mojo_cpp_system', |
| 25 ], | 23 ], |
| 26 # TODO(gregoryd): direct_dependent_settings should be shared with the | 24 # TODO(gregoryd): direct_dependent_settings should be shared with the |
| 27 # 64-bit target, but it doesn't work due to a bug in gyp | 25 # 64-bit target, but it doesn't work due to a bug in gyp |
| 28 'direct_dependent_settings': { | 26 'direct_dependent_settings': { |
| 29 'include_dirs': [ | 27 'include_dirs': [ |
| 30 '..', | 28 '..', |
| 31 ], | 29 ], |
| 32 }, | 30 }, |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 ['OS=="win" and target_arch=="ia32"', { | 171 ['OS=="win" and target_arch=="ia32"', { |
| 174 'targets': [ | 172 'targets': [ |
| 175 { | 173 { |
| 176 'target_name': 'ipc_win64', | 174 'target_name': 'ipc_win64', |
| 177 'type': '<(component)', | 175 'type': '<(component)', |
| 178 'variables': { | 176 'variables': { |
| 179 'ipc_target': 1, | 177 'ipc_target': 1, |
| 180 }, | 178 }, |
| 181 'dependencies': [ | 179 'dependencies': [ |
| 182 '../base/base.gyp:base_win64', | 180 '../base/base.gyp:base_win64', |
| 183 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is | |
| 184 # suspect. | |
| 185 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations_win64', | |
| 186 '../crypto/crypto.gyp:crypto_nacl_win64', | 181 '../crypto/crypto.gyp:crypto_nacl_win64', |
| 187 '../mojo/mojo_public.gyp:mojo_cpp_bindings_win64', | 182 '../mojo/mojo_public.gyp:mojo_cpp_bindings_win64', |
| 188 '../mojo/mojo_public.gyp:mojo_cpp_system_win64', | 183 '../mojo/mojo_public.gyp:mojo_cpp_system_win64', |
| 189 ], | 184 ], |
| 190 # TODO(gregoryd): direct_dependent_settings should be shared with the | 185 # TODO(gregoryd): direct_dependent_settings should be shared with the |
| 191 # 32-bit target, but it doesn't work due to a bug in gyp | 186 # 32-bit target, but it doesn't work due to a bug in gyp |
| 192 'direct_dependent_settings': { | 187 'direct_dependent_settings': { |
| 193 'include_dirs': [ | 188 'include_dirs': [ |
| 194 '..', | 189 '..', |
| 195 ], | 190 ], |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 '../build/isolate.gypi', | 254 '../build/isolate.gypi', |
| 260 ], | 255 ], |
| 261 'sources': [ | 256 'sources': [ |
| 262 'ipc_tests.isolate', | 257 'ipc_tests.isolate', |
| 263 ], | 258 ], |
| 264 }, | 259 }, |
| 265 ], | 260 ], |
| 266 }], | 261 }], |
| 267 ], | 262 ], |
| 268 } | 263 } |
| OLD | NEW |