| 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("//chromecast/build/tests/cast_test.gni") | 5 import("//chromecast/build/tests/cast_test.gni") |
| 6 import("//chromecast/chromecast.gni") | 6 import("//chromecast/chromecast.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 import("//ui/ozone/ozone.gni") | 10 import("//ui/ozone/ozone.gni") |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 ] | 129 ] |
| 130 } | 130 } |
| 131 } | 131 } |
| 132 | 132 |
| 133 # Creates the build and run lists for all test targets. | 133 # Creates the build and run lists for all test targets. |
| 134 cast_test_group_list("cast_test_lists") { | 134 cast_test_group_list("cast_test_lists") { |
| 135 build_list_path = "$root_out_dir/tests/build_test_list.txt" | 135 build_list_path = "$root_out_dir/tests/build_test_list.txt" |
| 136 | 136 |
| 137 run_list_path = "$root_out_dir/tests/run_test_list.txt" | 137 run_list_path = "$root_out_dir/tests/run_test_list.txt" |
| 138 | 138 |
| 139 additional_options = [ "--ozone-platform=test" ] | 139 additional_options = [ "--ozone-platform=headless" ] |
| 140 | 140 |
| 141 build_tests = true | 141 build_tests = true |
| 142 | 142 |
| 143 test_groups = [ ":cast_tests" ] | 143 test_groups = [ ":cast_tests" ] |
| 144 | 144 |
| 145 if (chromecast_branding != "public") { | 145 if (chromecast_branding != "public") { |
| 146 test_groups += [ "//chromecast/internal:internal_cast_tests" ] | 146 test_groups += [ "//chromecast/internal:internal_cast_tests" ] |
| 147 } | 147 } |
| 148 } | 148 } |
| 149 | 149 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 "$root_gen_dir/chromecast/internal/webui/cast_webui_resources.pak", | 230 "$root_gen_dir/chromecast/internal/webui/cast_webui_resources.pak", |
| 231 ] | 231 ] |
| 232 | 232 |
| 233 deps += [ | 233 deps += [ |
| 234 "//chromecast/internal/webui:chromecast_app_resources", | 234 "//chromecast/internal/webui:chromecast_app_resources", |
| 235 "//chromecast/internal/webui:chromecast_webui_resources", | 235 "//chromecast/internal/webui:chromecast_webui_resources", |
| 236 ] | 236 ] |
| 237 } | 237 } |
| 238 } | 238 } |
| 239 } | 239 } |
| OLD | NEW |