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

Side by Side Diff: chromecast/BUILD.gn

Issue 1466633004: Fix flags for Chromecast browser test on internal infrastructure (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | chromecast/chromecast_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/locales.gni") 6 import("//build/config/locales.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chromecast/build/tests/cast_test.gni") 8 import("//chromecast/build/tests/cast_test.gni")
9 import("//chromecast/chromecast.gni") 9 import("//chromecast/chromecast.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 ] 101 ]
102 } 102 }
103 103
104 if (!is_android) { 104 if (!is_android) {
105 tests += [ 105 tests += [
106 "//chromecast/app:cast_shell_unittests", 106 "//chromecast/app:cast_shell_unittests",
107 "//chromecast/browser:cast_shell_browser_test", 107 "//chromecast/browser:cast_shell_browser_test",
108 "//chromecast/media:cast_media_unittests", 108 "//chromecast/media:cast_media_unittests",
109 ] 109 ]
110 110
111 filters += [ "cast_shell_browser_test --no-sandbox --disable-gpu" ] 111 filters += [ "cast_shell_browser_test --no-sandbox --enable-local-file-acces ses --enable-cma-media-pipeline --ozone-platform=cast" ]
slan 2015/11/21 02:58:32 no --disable-gpu flag is intentional right?
112 } 112 }
113 113
114 if (!disable_display) { 114 if (!disable_display) {
115 tests += [ "//gpu:gpu_unittests" ] 115 tests += [ "//gpu:gpu_unittests" ]
116 } else { 116 } else {
117 filters += [ 117 filters += [
118 # These are not supported by the backend right now. b/21737919 118 # These are not supported by the backend right now. b/21737919
119 "cast_media_unittests --gtest_filter=-AudioVideoPipelineDeviceTest.VorbisP layback:AudioVideoPipelineDeviceTest.WebmPlayback", 119 "cast_media_unittests --gtest_filter=-AudioVideoPipelineDeviceTest.VorbisP layback:AudioVideoPipelineDeviceTest.WebmPlayback",
120 ] 120 ]
121 } 121 }
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 chromecast_branding == "google") 264 chromecast_branding == "google")
265 args = [ 265 args = [
266 "-b", 266 "-b",
267 "$chromecast_branding", 267 "$chromecast_branding",
268 "-g", 268 "-g",
269 rebase_path("$root_gen_dir/chromecast_strings"), 269 rebase_path("$root_gen_dir/chromecast_strings"),
270 "-x", 270 "-x",
271 rebase_path("$root_out_dir/chromecast_locales"), 271 rebase_path("$root_out_dir/chromecast_locales"),
272 ] + locales 272 ] + locales
273 } 273 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/chromecast_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698