| 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("//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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 ] | 130 ] |
| 131 } | 131 } |
| 132 } | 132 } |
| 133 | 133 |
| 134 # Creates the build and run lists for all test targets. | 134 # Creates the build and run lists for all test targets. |
| 135 cast_test_group_list("cast_test_lists") { | 135 cast_test_group_list("cast_test_lists") { |
| 136 build_list_path = "$root_out_dir/tests/build_test_list.txt" | 136 build_list_path = "$root_out_dir/tests/build_test_list.txt" |
| 137 | 137 |
| 138 run_list_path = "$root_out_dir/tests/run_test_list.txt" | 138 run_list_path = "$root_out_dir/tests/run_test_list.txt" |
| 139 | 139 |
| 140 additional_options = [ "--ozone-platform=test" ] | 140 additional_options = [ "--ozone-platform=headless" ] |
| 141 | 141 |
| 142 build_tests = true | 142 build_tests = true |
| 143 | 143 |
| 144 test_groups = [ ":cast_tests" ] | 144 test_groups = [ ":cast_tests" ] |
| 145 | 145 |
| 146 if (chromecast_branding != "public") { | 146 if (chromecast_branding != "public") { |
| 147 test_groups += [ "//chromecast/internal:internal_cast_tests" ] | 147 test_groups += [ "//chromecast/internal:internal_cast_tests" ] |
| 148 } | 148 } |
| 149 } | 149 } |
| 150 | 150 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 chromecast_branding == "google") | 274 chromecast_branding == "google") |
| 275 args = [ | 275 args = [ |
| 276 "-b", | 276 "-b", |
| 277 "$chromecast_branding", | 277 "$chromecast_branding", |
| 278 "-g", | 278 "-g", |
| 279 rebase_path("$root_gen_dir/chromecast_strings"), | 279 rebase_path("$root_gen_dir/chromecast_strings"), |
| 280 "-x", | 280 "-x", |
| 281 rebase_path("$root_out_dir/chromecast_locales"), | 281 rebase_path("$root_out_dir/chromecast_locales"), |
| 282 ] + locales | 282 ] + locales |
| 283 } | 283 } |
| OLD | NEW |