| OLD | NEW |
| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 filters += [ cast_media_unittests_filter ] | 78 filters += [ cast_media_unittests_filter ] |
| 79 | 79 |
| 80 cast_shell_browsertests_filter = { | 80 cast_shell_browsertests_filter = { |
| 81 test_name = "cast_shell_browsertests" | 81 test_name = "cast_shell_browsertests" |
| 82 | 82 |
| 83 # --enable-local-file-accesses => to load sample media files | 83 # --enable-local-file-accesses => to load sample media files |
| 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", | |
| 89 "--ozone-platform=cast", | 88 "--ozone-platform=cast", |
| 90 "--test-launcher-jobs=1", | 89 "--test-launcher-jobs=1", |
| 91 ] | 90 ] |
| 92 if (!is_cast_desktop_build) { | 91 if (!is_cast_desktop_build) { |
| 93 args += [ "--use-gpu-in-tests" ] | 92 args += [ "--use-gpu-in-tests" ] |
| 94 } | 93 } |
| 95 } | 94 } |
| 96 filters += [ cast_shell_browsertests_filter ] | 95 filters += [ cast_shell_browsertests_filter ] |
| 97 | 96 |
| 98 ipc_tests_filter = { | 97 ipc_tests_filter = { |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 453 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
| 455 | 454 |
| 456 deps = [ | 455 deps = [ |
| 457 ":cast_shell_apk_assets", | 456 ":cast_shell_apk_assets", |
| 458 "//base:base_java", | 457 "//base:base_java", |
| 459 "//chromecast/android:libcast_shell_android", | 458 "//chromecast/android:libcast_shell_android", |
| 460 "//chromecast/browser/android:cast_shell_java", | 459 "//chromecast/browser/android:cast_shell_java", |
| 461 ] | 460 ] |
| 462 } | 461 } |
| 463 } | 462 } |
| OLD | NEW |