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

Side by Side Diff: chromecast/BUILD.gn

Issue 2571583003: [Chromecast] Disable CastMediaBlocker intergration tests. (Closed)
Patch Set: Created 4 years 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 | 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 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/locales.gni") 7 import("//build/config/locales.gni")
8 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chromecast/build/tests/cast_test.gni") 10 import("//chromecast/build/tests/cast_test.gni")
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 # --test-launcher-jobs=1 => so internal code can bind to port 84 # --test-launcher-jobs=1 => so internal code can bind to port
85 args = [ 85 args = [
86 "--no-sandbox", 86 "--no-sandbox",
87 "--enable-local-file-accesses", 87 "--enable-local-file-accesses",
88 "--enable-cma-media-pipeline", 88 "--enable-cma-media-pipeline",
89 "--ozone-platform=cast", 89 "--ozone-platform=cast",
90 "--test-launcher-jobs=1", 90 "--test-launcher-jobs=1",
91 ] 91 ]
92 if (!is_cast_desktop_build) { 92 if (!is_cast_desktop_build) {
93 args += [ "--use-gpu-in-tests" ] 93 args += [ "--use-gpu-in-tests" ]
94
95 # TODO(derekjchow): Make these tests pass on Chromecast devices.
96 # Once all of the CastMediaBlockerTest.* have been un-DISABLEd and
97 # are running successfully, revisit these tests and see if they pass
98 # on devices. (crbug/665118, internal b/32023194)
99 gtest_excludes = [
100 "CastMediaBlockerBrowserTest.Video_BlockUnblock",
101 "CastMediaBlockerBrowserTest.Audio_BlockUnblock",
102 ]
94 } 103 }
95 } 104 }
96 filters += [ cast_shell_browsertests_filter ] 105 filters += [ cast_shell_browsertests_filter ]
97 106
98 ipc_tests_filter = { 107 ipc_tests_filter = {
99 test_name = "ipc_tests" 108 test_name = "ipc_tests"
100 109
101 # --test-launcher-jobs=1 => so internal code can bind to port 110 # --test-launcher-jobs=1 => so internal code can bind to port
102 args = [ "--test-launcher-jobs=1" ] 111 args = [ "--test-launcher-jobs=1" ]
103 } 112 }
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] 463 shared_libraries = [ "//chromecast/android:libcast_shell_android" ]
455 464
456 deps = [ 465 deps = [
457 ":cast_shell_apk_assets", 466 ":cast_shell_apk_assets",
458 "//base:base_java", 467 "//base:base_java",
459 "//chromecast/android:libcast_shell_android", 468 "//chromecast/android:libcast_shell_android",
460 "//chromecast/browser/android:cast_shell_java", 469 "//chromecast/browser/android:cast_shell_java",
461 ] 470 ]
462 } 471 }
463 } 472 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698