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

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: Lots of formatting changes and BUILD.gn updates. 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',
gunsch 2015/06/10 16:33:30 Needs to be added to: 1) testing/buildbot/chromiu
26 'type': '<(gtest_target_type)',
27 'dependencies': [
28 'chromecast.gyp:cast_crash_client',
29 '../base/base.gyp:run_all_unittests',
30 '../testing/gtest.gyp:gtest',
31 ],
32 'sources': [
33 'crash/dump_info_unittest.cc',
34 'crash/minidump_manager_unittest.cc',
35 'crash/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 ],
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 'HAS_OUT_OF_PROC_TEST_RUNNER', 272 'HAS_OUT_OF_PROC_TEST_RUNNER',
259 ], 273 ],
260 'sources': [ 274 'sources': [
261 'browser/test/chromecast_shell_browser_test.cc', 275 'browser/test/chromecast_shell_browser_test.cc',
262 ], 276 ],
263 }, 277 },
264 ], # end of targets 278 ], # end of targets
265 }], 279 }],
266 ], # end of conditions 280 ], # end of conditions
267 } 281 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698