OLD | NEW |
1 # Copyright (c) 2014 Google Inc. All Rights Reserved. | 1 # Copyright (c) 2014 Google Inc. 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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'cast_base_unittests', | 11 'target_name': 'cast_base_unittests', |
12 'type': '<(gtest_target_type)', | 12 'type': '<(gtest_target_type)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 'chromecast.gyp:cast_base', | 14 'chromecast.gyp:cast_base', |
15 '../base/base.gyp:run_all_unittests', | 15 '../base/base.gyp:run_all_unittests', |
16 '../testing/gtest.gyp:gtest', | 16 '../testing/gtest.gyp:gtest', |
17 ], | 17 ], |
18 'sources': [ | 18 'sources': [ |
19 'base/path_utils_unittest.cc', | 19 'base/path_utils_unittest.cc', |
20 'base/process_utils_unittest.cc', | 20 'base/process_utils_unittest.cc', |
21 'base/serializers_unittest.cc', | 21 'base/serializers_unittest.cc', |
22 ], | 22 ], |
23 }, | 23 }, |
24 { | 24 { |
| 25 'target_name': 'cast_crash_unittests', |
| 26 'type': '<(gtest_target_type)', |
| 27 'dependencies': [ |
| 28 'chromecast.gyp:cast_crash', |
| 29 '../base/base.gyp:run_all_unittests', |
| 30 '../testing/gtest.gyp:gtest', |
| 31 ], |
| 32 'sources': [ |
| 33 'crash/linux/cast_crash_reporter_client_unittest.cc', |
| 34 'crash/linux/dump_info_unittest.cc', |
| 35 'crash/linux/synchronized_minidump_manager_unittest.cc', |
| 36 'crash/linux/minidump_writer_unittest.cc', |
| 37 ], |
| 38 }, |
| 39 { |
25 'target_name': 'cast_tests', | 40 'target_name': 'cast_tests', |
26 'type': 'none', | 41 'type': 'none', |
27 'dependencies': [ | 42 'dependencies': [ |
28 'cast_test_generator', | 43 'cast_test_generator', |
29 ], | 44 ], |
30 'conditions': [ | 45 'conditions': [ |
31 ['chromecast_branding=="Chrome"', { | 46 ['chromecast_branding=="Chrome"', { |
32 'dependencies': [ | 47 'dependencies': [ |
33 'internal/chromecast_internal.gyp:cast_tests_internal', | 48 'internal/chromecast_internal.gyp:cast_tests_internal', |
34 ], | 49 ], |
35 }], | 50 }], |
36 ], | 51 ], |
37 }, | 52 }, |
38 # This target only depends on targets that generate test binaries. | 53 # This target only depends on targets that generate test binaries. |
39 { | 54 { |
40 'target_name': 'cast_test_generator', | 55 'target_name': 'cast_test_generator', |
41 'type': 'none', | 56 'type': 'none', |
42 'dependencies': [ | 57 'dependencies': [ |
43 'cast_base_unittests', | 58 'cast_base_unittests', |
| 59 'cast_crash_unittests', |
44 '../base/base.gyp:base_unittests', | 60 '../base/base.gyp:base_unittests', |
45 '../content/content_shell_and_tests.gyp:content_unittests', | 61 '../content/content_shell_and_tests.gyp:content_unittests', |
46 '../crypto/crypto.gyp:crypto_unittests', | 62 '../crypto/crypto.gyp:crypto_unittests', |
47 '../ipc/ipc.gyp:ipc_tests', | 63 '../ipc/ipc.gyp:ipc_tests', |
48 '../jingle/jingle.gyp:jingle_unittests', | 64 '../jingle/jingle.gyp:jingle_unittests', |
49 '../media/media.gyp:media_unittests', | 65 '../media/media.gyp:media_unittests', |
50 '../media/midi/midi.gyp:midi_unittests', | 66 '../media/midi/midi.gyp:midi_unittests', |
51 '../net/net.gyp:net_unittests', | 67 '../net/net.gyp:net_unittests', |
52 '../sandbox/sandbox.gyp:sandbox_linux_unittests', | 68 '../sandbox/sandbox.gyp:sandbox_linux_unittests', |
53 '../sql/sql.gyp:sql_unittests', | 69 '../sql/sql.gyp:sql_unittests', |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 'HAS_OUT_OF_PROC_TEST_RUNNER', | 282 'HAS_OUT_OF_PROC_TEST_RUNNER', |
267 ], | 283 ], |
268 'sources': [ | 284 'sources': [ |
269 'browser/test/chromecast_shell_browser_test.cc', | 285 'browser/test/chromecast_shell_browser_test.cc', |
270 ], | 286 ], |
271 }, | 287 }, |
272 ], # end of targets | 288 ], # end of targets |
273 }], | 289 }], |
274 ], # end of conditions | 290 ], # end of conditions |
275 } | 291 } |
OLD | NEW |