OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'includes': [ | 6 'includes': [ |
7 '../mojo_variables.gypi', | 7 '../mojo_variables.gypi', |
8 ], | 8 ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 'dependencies': [ | 161 'dependencies': [ |
162 '../../base/base.gyp:base', | 162 '../../base/base.gyp:base', |
163 '../../testing/gtest.gyp:gtest', | 163 '../../testing/gtest.gyp:gtest', |
164 'mojo_edk.gyp:mojo_common_test_support', | 164 'mojo_edk.gyp:mojo_common_test_support', |
165 'mojo_edk.gyp:mojo_system_impl', | 165 'mojo_edk.gyp:mojo_system_impl', |
166 ], | 166 ], |
167 'sources': [ | 167 'sources': [ |
168 'embedder/embedder_unittest.cc', | 168 'embedder/embedder_unittest.cc', |
169 'embedder/platform_channel_pair_posix_unittest.cc', | 169 'embedder/platform_channel_pair_posix_unittest.cc', |
170 'embedder/simple_platform_shared_buffer_unittest.cc', | 170 'embedder/simple_platform_shared_buffer_unittest.cc', |
| 171 'system/awakable_list_unittest.cc', |
171 'system/channel_endpoint_id_unittest.cc', | 172 'system/channel_endpoint_id_unittest.cc', |
172 'system/channel_manager_unittest.cc', | 173 'system/channel_manager_unittest.cc', |
173 'system/channel_unittest.cc', | 174 'system/channel_unittest.cc', |
174 'system/core_unittest.cc', | 175 'system/core_unittest.cc', |
175 'system/core_test_base.cc', | 176 'system/core_test_base.cc', |
176 'system/core_test_base.h', | 177 'system/core_test_base.h', |
177 'system/data_pipe_unittest.cc', | 178 'system/data_pipe_unittest.cc', |
178 'system/dispatcher_unittest.cc', | 179 'system/dispatcher_unittest.cc', |
179 'system/local_data_pipe_unittest.cc', | 180 'system/local_data_pipe_unittest.cc', |
180 'system/memory_unittest.cc', | 181 'system/memory_unittest.cc', |
181 'system/message_pipe_dispatcher_unittest.cc', | 182 'system/message_pipe_dispatcher_unittest.cc', |
182 'system/message_pipe_test_utils.h', | 183 'system/message_pipe_test_utils.h', |
183 'system/message_pipe_test_utils.cc', | 184 'system/message_pipe_test_utils.cc', |
184 'system/message_pipe_unittest.cc', | 185 'system/message_pipe_unittest.cc', |
185 'system/multiprocess_message_pipe_unittest.cc', | 186 'system/multiprocess_message_pipe_unittest.cc', |
186 'system/options_validation_unittest.cc', | 187 'system/options_validation_unittest.cc', |
187 'system/platform_handle_dispatcher_unittest.cc', | 188 'system/platform_handle_dispatcher_unittest.cc', |
188 'system/raw_channel_unittest.cc', | 189 'system/raw_channel_unittest.cc', |
189 'system/remote_message_pipe_unittest.cc', | 190 'system/remote_message_pipe_unittest.cc', |
190 'system/run_all_unittests.cc', | 191 'system/run_all_unittests.cc', |
191 'system/shared_buffer_dispatcher_unittest.cc', | 192 'system/shared_buffer_dispatcher_unittest.cc', |
192 'system/simple_dispatcher_unittest.cc', | 193 'system/simple_dispatcher_unittest.cc', |
193 'system/test_utils.cc', | 194 'system/test_utils.cc', |
194 'system/test_utils.h', | 195 'system/test_utils.h', |
195 'system/waiter_list_unittest.cc', | |
196 'system/waiter_test_utils.cc', | 196 'system/waiter_test_utils.cc', |
197 'system/waiter_test_utils.h', | 197 'system/waiter_test_utils.h', |
198 'system/waiter_unittest.cc', | 198 'system/waiter_unittest.cc', |
199 'test/multiprocess_test_helper_unittest.cc', | 199 'test/multiprocess_test_helper_unittest.cc', |
200 ], | 200 ], |
201 'conditions': [ | 201 'conditions': [ |
202 ['OS=="ios"', { | 202 ['OS=="ios"', { |
203 'sources!': [ | 203 'sources!': [ |
204 'embedder/embedder_unittest.cc', | 204 'embedder/embedder_unittest.cc', |
205 'system/multiprocess_message_pipe_unittest.cc', | 205 'system/multiprocess_message_pipe_unittest.cc', |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 'type': 'none', | 270 'type': 'none', |
271 'variables': { | 271 'variables': { |
272 'mojom_files': [ | 272 'mojom_files': [ |
273 'js/tests/js_to_cpp.mojom', | 273 'js/tests/js_to_cpp.mojom', |
274 ], | 274 ], |
275 }, | 275 }, |
276 'includes': [ '../public/tools/bindings/mojom_bindings_generator_explicit.
gypi' ], | 276 'includes': [ '../public/tools/bindings/mojom_bindings_generator_explicit.
gypi' ], |
277 }, | 277 }, |
278 ], | 278 ], |
279 } | 279 } |
OLD | NEW |