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', |
(...skipping 15 matching lines...) Expand all Loading... |
26 'include_dirs': [ | 26 'include_dirs': [ |
27 '..', | 27 '..', |
28 ], | 28 ], |
29 }, | 29 }, |
30 }, | 30 }, |
31 { | 31 { |
32 'target_name': 'ipc_tests', | 32 'target_name': 'ipc_tests', |
33 'type': '<(gtest_target_type)', | 33 'type': '<(gtest_target_type)', |
34 'dependencies': [ | 34 'dependencies': [ |
35 'ipc', | 35 'ipc', |
| 36 'test_support_ipc', |
36 '../base/base.gyp:base', | 37 '../base/base.gyp:base', |
37 '../base/base.gyp:base_i18n', | 38 '../base/base.gyp:base_i18n', |
38 '../base/base.gyp:test_support_base', | 39 '../base/base.gyp:test_support_base', |
39 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 40 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
40 '../testing/gtest.gyp:gtest', | 41 '../testing/gtest.gyp:gtest', |
41 ], | 42 ], |
42 'include_dirs': [ | 43 'include_dirs': [ |
43 '..' | 44 '..' |
44 ], | 45 ], |
45 'sources': [ | 46 'sources': [ |
(...skipping 30 matching lines...) Expand all Loading... |
76 ], | 77 ], |
77 }] | 78 }] |
78 ], | 79 ], |
79 }, | 80 }, |
80 { | 81 { |
81 'target_name': 'test_support_ipc', | 82 'target_name': 'test_support_ipc', |
82 'type': 'static_library', | 83 'type': 'static_library', |
83 'dependencies': [ | 84 'dependencies': [ |
84 'ipc', | 85 'ipc', |
85 '../base/base.gyp:base', | 86 '../base/base.gyp:base', |
| 87 '../testing/gtest.gyp:gtest', |
86 ], | 88 ], |
87 'sources': [ | 89 'sources': [ |
| 90 'ipc_multiprocess_test.cc', |
| 91 'ipc_multiprocess_test.h', |
88 'ipc_test_sink.cc', | 92 'ipc_test_sink.cc', |
89 'ipc_test_sink.h', | 93 'ipc_test_sink.h', |
90 ], | 94 ], |
91 }, | 95 }, |
92 ], | 96 ], |
93 'conditions': [ | 97 'conditions': [ |
94 ['OS=="win"', { | 98 ['OS=="win"', { |
95 'targets': [ | 99 'targets': [ |
96 { | 100 { |
97 'target_name': 'ipc_win64', | 101 'target_name': 'ipc_win64', |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 'variables': { | 137 'variables': { |
134 'test_suite_name': 'ipc_tests', | 138 'test_suite_name': 'ipc_tests', |
135 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ipc_tests
<(SHARED_LIB_SUFFIX)', | 139 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ipc_tests
<(SHARED_LIB_SUFFIX)', |
136 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], | 140 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], |
137 }, | 141 }, |
138 'includes': [ '../build/apk_test.gypi' ], | 142 'includes': [ '../build/apk_test.gypi' ], |
139 }], | 143 }], |
140 }], | 144 }], |
141 ], | 145 ], |
142 } | 146 } |
OLD | NEW |