OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'mojo_examples.gypi', | 10 'mojo_examples.gypi', |
(...skipping 22 matching lines...) Expand all Loading... |
33 'mojo_system_unittests', | 33 'mojo_system_unittests', |
34 'sample_app', | 34 'sample_app', |
35 ], | 35 ], |
36 }, | 36 }, |
37 { | 37 { |
38 'target_name': 'mojo_run_all_unittests', | 38 'target_name': 'mojo_run_all_unittests', |
39 'type': 'static_library', | 39 'type': 'static_library', |
40 'dependencies': [ | 40 'dependencies': [ |
41 '../base/base.gyp:base', | 41 '../base/base.gyp:base', |
42 '../base/base.gyp:test_support_base', | 42 '../base/base.gyp:test_support_base', |
| 43 '../testing/gtest.gyp:gtest', |
43 'mojo_system', | 44 'mojo_system', |
44 ], | 45 ], |
45 'sources': [ | 46 'sources': [ |
| 47 'common/test/multiprocess_test_base.cc', |
| 48 'common/test/multiprocess_test_base.h', |
46 'common/test/run_all_unittests.cc', | 49 'common/test/run_all_unittests.cc', |
47 ], | 50 ], |
48 }, | 51 }, |
49 { | 52 { |
50 'target_name': 'mojo_run_all_perftests', | 53 'target_name': 'mojo_run_all_perftests', |
51 'type': 'static_library', | 54 'type': 'static_library', |
52 'dependencies': [ | 55 'dependencies': [ |
53 '../base/base.gyp:test_support_base', | 56 '../base/base.gyp:test_support_base', |
54 'mojo_system', | 57 'mojo_system', |
55 ], | 58 ], |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 'mojo_bindings', | 179 'mojo_bindings', |
177 'mojo_common_lib', | 180 'mojo_common_lib', |
178 'mojo_public_test_support', | 181 'mojo_public_test_support', |
179 'mojo_run_all_unittests', | 182 'mojo_run_all_unittests', |
180 'mojo_system', | 183 'mojo_system', |
181 ], | 184 ], |
182 'sources': [ | 185 'sources': [ |
183 'common/common_similarity_traits_unittest.cc', | 186 'common/common_similarity_traits_unittest.cc', |
184 'common/handle_watcher_unittest.cc', | 187 'common/handle_watcher_unittest.cc', |
185 'common/message_pump_mojo_unittest.cc', | 188 'common/message_pump_mojo_unittest.cc', |
| 189 'common/test/multiprocess_test_base_unittest.cc', |
186 ], | 190 ], |
187 'conditions': [ | 191 'conditions': [ |
188 ['OS == "win"', { | 192 ['OS == "win"', { |
189 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 193 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
190 'msvs_disabled_warnings': [ | 194 'msvs_disabled_warnings': [ |
191 4267, | 195 4267, |
192 ], | 196 ], |
193 }], | 197 }], |
194 ], | 198 ], |
195 }, | 199 }, |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 357 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
354 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 358 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
355 'native_lib_target': 'libmojo_shell', | 359 'native_lib_target': 'libmojo_shell', |
356 }, | 360 }, |
357 'includes': [ '../build/java_apk.gypi' ], | 361 'includes': [ '../build/java_apk.gypi' ], |
358 } | 362 } |
359 ], | 363 ], |
360 }], | 364 }], |
361 ], | 365 ], |
362 } | 366 } |
OLD | NEW |