| 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(vtl): 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 ], | 23 ], |
| 24 # TODO(gregoryd): direct_dependent_settings should be shared with the | 24 # 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 | 25 # 64-bit target, but it doesn't work due to a bug in gyp |
| 26 'direct_dependent_settings': { | 26 'direct_dependent_settings': { |
| 27 'include_dirs': [ | 27 'include_dirs': [ |
| 28 '..', | 28 '..', |
| 29 ], | 29 ], |
| 30 }, | 30 }, |
| 31 }, | 31 }, |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 ['OS=="win" and target_arch=="ia32"', { | 144 ['OS=="win" and target_arch=="ia32"', { |
| 145 'targets': [ | 145 'targets': [ |
| 146 { | 146 { |
| 147 'target_name': 'ipc_win64', | 147 'target_name': 'ipc_win64', |
| 148 'type': '<(component)', | 148 'type': '<(component)', |
| 149 'variables': { | 149 'variables': { |
| 150 'ipc_target': 1, | 150 'ipc_target': 1, |
| 151 }, | 151 }, |
| 152 'dependencies': [ | 152 'dependencies': [ |
| 153 '../base/base.gyp:base_nacl_win64', | 153 '../base/base.gyp:base_nacl_win64', |
| 154 # TODO(vtl): Needed for base/lazy_instance.h, which is suspect. | 154 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is |
| 155 # suspect. |
| 155 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations_win64', | 156 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations_win64', |
| 156 ], | 157 ], |
| 157 # TODO(gregoryd): direct_dependent_settings should be shared with the | 158 # TODO(gregoryd): direct_dependent_settings should be shared with the |
| 158 # 32-bit target, but it doesn't work due to a bug in gyp | 159 # 32-bit target, but it doesn't work due to a bug in gyp |
| 159 'direct_dependent_settings': { | 160 'direct_dependent_settings': { |
| 160 'include_dirs': [ | 161 'include_dirs': [ |
| 161 '..', | 162 '..', |
| 162 ], | 163 ], |
| 163 }, | 164 }, |
| 164 'configurations': { | 165 'configurations': { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 182 ], | 183 ], |
| 183 'variables': { | 184 'variables': { |
| 184 'test_suite_name': 'ipc_tests', | 185 'test_suite_name': 'ipc_tests', |
| 185 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ipc_tests
<(SHARED_LIB_SUFFIX)', | 186 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ipc_tests
<(SHARED_LIB_SUFFIX)', |
| 186 }, | 187 }, |
| 187 'includes': [ '../build/apk_test.gypi' ], | 188 'includes': [ '../build/apk_test.gypi' ], |
| 188 }], | 189 }], |
| 189 }], | 190 }], |
| 190 ], | 191 ], |
| 191 } | 192 } |
| OLD | NEW |