| 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/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("//build_overrides/v8.gni") | 8 import("//build_overrides/v8.gni") |
| 9 import("//chromecast/build/tests/cast_test.gni") | 9 import("//chromecast/build/tests/cast_test.gni") |
| 10 import("//chromecast/chromecast.gni") | 10 import("//chromecast/chromecast.gni") |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "//ipc:ipc_tests", | 109 "//ipc:ipc_tests", |
| 110 "//jingle:jingle_unittests", | 110 "//jingle:jingle_unittests", |
| 111 "//url:url_unittests", | 111 "//url:url_unittests", |
| 112 ] | 112 ] |
| 113 | 113 |
| 114 # --enable-local-file-accesses => to load sample media files | 114 # --enable-local-file-accesses => to load sample media files |
| 115 # --test-launcher-jobs=1 => so internal code can bind to port | 115 # --test-launcher-jobs=1 => so internal code can bind to port |
| 116 filters += [ | 116 filters += [ |
| 117 "cast_shell_browser_test --no-sandbox --enable-local-file-accesses --enabl
e-cma-media-pipeline --ozone-platform=cast --test-launcher-jobs=1", | 117 "cast_shell_browser_test --no-sandbox --enable-local-file-accesses --enabl
e-cma-media-pipeline --ozone-platform=cast --test-launcher-jobs=1", |
| 118 "cast_media_unittests --test-launcher-jobs=1", | 118 "cast_media_unittests --test-launcher-jobs=1", |
| 119 "ipc_tests --test-launcher-jobs=1", |
| 119 ] | 120 ] |
| 120 | 121 |
| 121 if (use_alsa) { | 122 if (use_alsa) { |
| 122 tests += | 123 tests += |
| 123 [ "//chromecast/media/cma/backend/alsa:alsa_cma_backend_unittests" ] | 124 [ "//chromecast/media/cma/backend/alsa:alsa_cma_backend_unittests" ] |
| 124 } | 125 } |
| 125 } | 126 } |
| 126 | 127 |
| 127 if (!disable_display) { | 128 if (!disable_display) { |
| 128 tests += [ "//gpu:gpu_unittests" ] | 129 tests += [ "//gpu:gpu_unittests" ] |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 apk_name = "CastShell" | 289 apk_name = "CastShell" |
| 289 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" | 290 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" |
| 290 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" | 291 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" |
| 291 deps = [ | 292 deps = [ |
| 292 ":cast_shell_apk_assets", | 293 ":cast_shell_apk_assets", |
| 293 "//chromecast/android:libcast_shell_android", | 294 "//chromecast/android:libcast_shell_android", |
| 294 "//chromecast/browser/android:cast_shell_java", | 295 "//chromecast/browser/android:cast_shell_java", |
| 295 ] | 296 ] |
| 296 } | 297 } |
| 297 } | 298 } |
| OLD | NEW |