| 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 '../mojo/mojo_edk.gyp:mojo_system_impl', |
| 24 '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 25 '../mojo/mojo_public.gyp:mojo_cpp_system', |
| 23 ], | 26 ], |
| 24 # TODO(gregoryd): direct_dependent_settings should be shared with the | 27 # 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 | 28 # 64-bit target, but it doesn't work due to a bug in gyp |
| 26 'direct_dependent_settings': { | 29 'direct_dependent_settings': { |
| 27 'include_dirs': [ | 30 'include_dirs': [ |
| 28 '..', | 31 '..', |
| 29 ], | 32 ], |
| 30 }, | 33 }, |
| 31 'conditions': [ | 34 'conditions': [ |
| 32 ['OS == "win" or OS == "mac"', { | 35 ['OS == "win" or OS == "mac"', { |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 '../build/isolate.gypi', | 242 '../build/isolate.gypi', |
| 240 ], | 243 ], |
| 241 'sources': [ | 244 'sources': [ |
| 242 'ipc_tests.isolate', | 245 'ipc_tests.isolate', |
| 243 ], | 246 ], |
| 244 }, | 247 }, |
| 245 ], | 248 ], |
| 246 }], | 249 }], |
| 247 ], | 250 ], |
| 248 } | 251 } |
| OLD | NEW |