| 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/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build_overrides/v8.gni") | 9 import("//build_overrides/v8.gni") |
| 10 import("//chromecast/build/tests/cast_test.gni") | 10 import("//chromecast/build/tests/cast_test.gni") |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 114 |
| 115 # --enable-local-file-accesses => to load sample media files | 115 # --enable-local-file-accesses => to load sample media files |
| 116 # --test-launcher-jobs=1 => so internal code can bind to port | 116 # --test-launcher-jobs=1 => so internal code can bind to port |
| 117 filters += [ | 117 filters += [ |
| 118 "cast_shell_browser_test --no-sandbox --enable-local-file-accesses --enabl
e-cma-media-pipeline --ozone-platform=cast --test-launcher-jobs=1", | 118 "cast_shell_browser_test --no-sandbox --enable-local-file-accesses --enabl
e-cma-media-pipeline --ozone-platform=cast --test-launcher-jobs=1", |
| 119 "cast_media_unittests --test-launcher-jobs=1", | 119 "cast_media_unittests --test-launcher-jobs=1", |
| 120 "ipc_tests --test-launcher-jobs=1", | 120 "ipc_tests --test-launcher-jobs=1", |
| 121 ] | 121 ] |
| 122 | 122 |
| 123 if (use_alsa) { | 123 if (use_alsa) { |
| 124 tests += | 124 tests += [ "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unit
tests" ] |
| 125 [ "//chromecast/media/cma/backend/alsa:alsa_cma_backend_unittests" ] | |
| 126 } | 125 } |
| 127 } | 126 } |
| 128 | 127 |
| 129 if (!disable_display) { | 128 if (!disable_display) { |
| 130 tests += [ "//gpu:gpu_unittests" ] | 129 tests += [ "//gpu:gpu_unittests" ] |
| 131 } | 130 } |
| 132 } | 131 } |
| 133 | 132 |
| 134 # Creates the build and run lists for all test targets. | 133 # Creates the build and run lists for all test targets. |
| 135 cast_test_group_list("cast_test_lists") { | 134 cast_test_group_list("cast_test_lists") { |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 apk_name = "CastShell" | 291 apk_name = "CastShell" |
| 293 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" | 292 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" |
| 294 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" | 293 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" |
| 295 deps = [ | 294 deps = [ |
| 296 ":cast_shell_apk_assets", | 295 ":cast_shell_apk_assets", |
| 297 "//chromecast/android:libcast_shell_android", | 296 "//chromecast/android:libcast_shell_android", |
| 298 "//chromecast/browser/android:cast_shell_java", | 297 "//chromecast/browser/android:cast_shell_java", |
| 299 ] | 298 ] |
| 300 } | 299 } |
| 301 } | 300 } |
| OLD | NEW |