Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: chromecast/chromecast_tests.gypi

Issue 1154383006: Adding crash utilities to chromecast/crash. (Closed) Base URL: https://eureka-internal.googlesource.com/chromium/src@master
Patch Set: Refactored crash dependencies Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }, # end of cast_base_unittests
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/dump_info_unittest.cc',
34 'crash/linux/synchronized_minidump_manager_unittest.cc',
35 'crash/linux/minidump_writer_unittest.cc',
36 ],
37 }, # end of cast_crash_unittests
38 {
39 'target_name': 'cast_shell_unittests',
40 'type': '<(gtest_target_type)',
41 'dependencies': [
42 'chromecast.gyp:cast_crash_client',
43 '../base/base.gyp:run_all_unittests',
44 '../testing/gtest.gyp:gtest',
45 ],
46 'sources': [
47 'app/linux/cast_crash_reporter_client_unittest.cc',
48 ],
49 }, # end of cast_shell_unittests
24 { 50 {
25 'target_name': 'cast_tests', 51 'target_name': 'cast_tests',
26 'type': 'none', 52 'type': 'none',
27 'dependencies': [ 53 'dependencies': [
28 'cast_test_generator', 54 'cast_test_generator',
29 ], 55 ],
30 'conditions': [ 56 'conditions': [
31 ['chromecast_branding=="Chrome"', { 57 ['chromecast_branding=="Chrome"', {
32 'dependencies': [ 58 'dependencies': [
33 'internal/chromecast_internal.gyp:cast_tests_internal', 59 'internal/chromecast_internal.gyp:cast_tests_internal',
34 ], 60 ],
35 }], 61 }],
36 ], 62 ],
37 }, 63 },
38 # This target only depends on targets that generate test binaries. 64 # This target only depends on targets that generate test binaries.
39 { 65 {
40 'target_name': 'cast_test_generator', 66 'target_name': 'cast_test_generator',
41 'type': 'none', 67 'type': 'none',
42 'dependencies': [ 68 'dependencies': [
43 'cast_base_unittests', 69 'cast_base_unittests',
70 'cast_crash_unittests',
44 '../base/base.gyp:base_unittests', 71 '../base/base.gyp:base_unittests',
45 '../content/content_shell_and_tests.gyp:content_unittests', 72 '../content/content_shell_and_tests.gyp:content_unittests',
46 '../crypto/crypto.gyp:crypto_unittests', 73 '../crypto/crypto.gyp:crypto_unittests',
47 '../ipc/ipc.gyp:ipc_tests', 74 '../ipc/ipc.gyp:ipc_tests',
48 '../jingle/jingle.gyp:jingle_unittests', 75 '../jingle/jingle.gyp:jingle_unittests',
49 '../media/media.gyp:media_unittests', 76 '../media/media.gyp:media_unittests',
50 '../media/midi/midi.gyp:midi_unittests', 77 '../media/midi/midi.gyp:midi_unittests',
51 '../net/net.gyp:net_unittests', 78 '../net/net.gyp:net_unittests',
52 '../sandbox/sandbox.gyp:sandbox_linux_unittests', 79 '../sandbox/sandbox.gyp:sandbox_linux_unittests',
53 '../sql/sql.gyp:sql_unittests', 80 '../sql/sql.gyp:sql_unittests',
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 'HAS_OUT_OF_PROC_TEST_RUNNER', 293 'HAS_OUT_OF_PROC_TEST_RUNNER',
267 ], 294 ],
268 'sources': [ 295 'sources': [
269 'browser/test/chromecast_shell_browser_test.cc', 296 'browser/test/chromecast_shell_browser_test.cc',
270 ], 297 ],
271 }, 298 },
272 ], # end of targets 299 ], # end of targets
273 }], 300 }],
274 ], # end of conditions 301 ], # end of conditions
275 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698