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

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: Linux-specific utils moved to linux/ 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 },
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/dump_info_unittest.cc',
34 'crash/linux/minidump_manager_unittest.cc',
35 'crash/linux/minidump_writer_unittest.cc',
36 ],
37 },
38 {
25 'target_name': 'cast_tests', 39 'target_name': 'cast_tests',
26 'type': 'none', 40 'type': 'none',
27 'dependencies': [ 41 'dependencies': [
28 'cast_test_generator', 42 'cast_test_generator',
29 ], 43 ],
30 'conditions': [ 44 'conditions': [
31 ['chromecast_branding=="Chrome"', { 45 ['chromecast_branding=="Chrome"', {
32 'dependencies': [ 46 'dependencies': [
33 'internal/chromecast_internal.gyp:cast_tests_internal', 47 'internal/chromecast_internal.gyp:cast_tests_internal',
34 ], 48 ],
35 }], 49 }],
36 ], 50 ],
37 }, 51 },
38 # This target only depends on targets that generate test binaries. 52 # This target only depends on targets that generate test binaries.
39 { 53 {
40 'target_name': 'cast_test_generator', 54 'target_name': 'cast_test_generator',
41 'type': 'none', 55 'type': 'none',
42 'dependencies': [ 56 'dependencies': [
43 'cast_base_unittests', 57 'cast_base_unittests',
58 'cast_crash_unittests',
44 '../base/base.gyp:base_unittests', 59 '../base/base.gyp:base_unittests',
45 '../content/content_shell_and_tests.gyp:content_unittests', 60 '../content/content_shell_and_tests.gyp:content_unittests',
46 '../crypto/crypto.gyp:crypto_unittests', 61 '../crypto/crypto.gyp:crypto_unittests',
47 '../ipc/ipc.gyp:ipc_tests', 62 '../ipc/ipc.gyp:ipc_tests',
48 '../jingle/jingle.gyp:jingle_unittests', 63 '../jingle/jingle.gyp:jingle_unittests',
49 '../media/media.gyp:media_unittests', 64 '../media/media.gyp:media_unittests',
50 '../media/midi/midi.gyp:midi_unittests', 65 '../media/midi/midi.gyp:midi_unittests',
51 '../net/net.gyp:net_unittests', 66 '../net/net.gyp:net_unittests',
52 '../sandbox/sandbox.gyp:sandbox_linux_unittests', 67 '../sandbox/sandbox.gyp:sandbox_linux_unittests',
53 '../sql/sql.gyp:sql_unittests', 68 '../sql/sql.gyp:sql_unittests',
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 'HAS_OUT_OF_PROC_TEST_RUNNER', 281 'HAS_OUT_OF_PROC_TEST_RUNNER',
267 ], 282 ],
268 'sources': [ 283 'sources': [
269 'browser/test/chromecast_shell_browser_test.cc', 284 'browser/test/chromecast_shell_browser_test.cc',
270 ], 285 ],
271 }, 286 },
272 ], # end of targets 287 ], # end of targets
273 }], 288 }],
274 ], # end of conditions 289 ], # end of conditions
275 } 290 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698