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

Side by Side Diff: chromecast/chromecast_tests.gypi

Issue 837573003: Chromecast: adds disable_display define for headless builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « chromecast/chromecast.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'cast_tests', 8 'target_name': 'cast_tests',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 28 matching lines...) Expand all
39 '../url/url.gyp:url_unittests', 39 '../url/url.gyp:url_unittests',
40 ], 40 ],
41 'variables': { 41 'variables': {
42 'filters': [ 42 'filters': [
43 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty eglib c incompatibility 43 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty eglib c incompatibility
44 # See: crbug/428211 44 # See: crbug/428211
45 'base_unittests --gtest_filter=-OutOfMemoryDeathTest.ViaSharedLibrarie s', 45 'base_unittests --gtest_filter=-OutOfMemoryDeathTest.ViaSharedLibrarie s',
46 ], 46 ],
47 }, 47 },
48 'conditions': [ 48 'conditions': [
49 ['disable_display==0', {
50 'dependencies': [
51 '../gpu/gpu.gyp:gpu_unittests',
52 ],
53 }],
54 ],
55 'conditions': [
49 ['OS!="android"', { 56 ['OS!="android"', {
50 'dependencies': [ 57 'dependencies': [
51 'cast_shell_browser_test', 58 'cast_shell_browser_test',
52 ], 59 ],
53 'variables': { 60 'variables': {
54 'filters': [ 61 'filters': [
55 'cast_shell_browser_test --no-sandbox', 62 'cast_shell_browser_test --no-sandbox',
56 ], 63 ],
57 }, 64 },
58 }], 65 }],
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 'HAS_OUT_OF_PROC_TEST_RUNNER', 197 'HAS_OUT_OF_PROC_TEST_RUNNER',
191 ], 198 ],
192 'sources': [ 199 'sources': [
193 'browser/test/chromecast_shell_browser_test.cc', 200 'browser/test/chromecast_shell_browser_test.cc',
194 ], 201 ],
195 }, 202 },
196 ], # end of targets 203 ], # end of targets
197 }], 204 }],
198 ], # end of conditions 205 ], # end of conditions
199 } 206 }
OLDNEW
« no previous file with comments | « chromecast/chromecast.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698