| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 build_list_path = "$root_out_dir/junit/build_junit_test_list.txt" | 283 build_list_path = "$root_out_dir/junit/build_junit_test_list.txt" |
| 284 run_list_path = "$root_out_dir/junit/run_junit_test_list.txt" | 284 run_list_path = "$root_out_dir/junit/run_junit_test_list.txt" |
| 285 build_tests = true | 285 build_tests = true |
| 286 test_groups = [ ":cast_junit_tests" ] | 286 test_groups = [ ":cast_junit_tests" ] |
| 287 } | 287 } |
| 288 } | 288 } |
| 289 | 289 |
| 290 test("cast_shell_unittests") { | 290 test("cast_shell_unittests") { |
| 291 deps = [ | 291 deps = [ |
| 292 ":cast_shell_lib", | 292 ":cast_shell_lib", |
| 293 "//chromecast/app:test_support", | |
| 294 "//chromecast/app:unittests", | 293 "//chromecast/app:unittests", |
| 294 "//chromecast/app:unittests_main", |
| 295 "//chromecast/browser:unittests", | 295 "//chromecast/browser:unittests", |
| 296 "//ui/gl:test_support", | 296 "//ui/gl:test_support", |
| 297 ] | 297 ] |
| 298 } | 298 } |
| 299 | 299 |
| 300 test("cast_shell_browsertests") { | 300 test("cast_shell_browsertests") { |
| 301 deps = [ | 301 deps = [ |
| 302 ":cast_shell_lib", | 302 ":cast_shell_lib", |
| 303 "//chromecast/app:test_support", | 303 "//chromecast/app:browsertests_main", |
| 304 "//chromecast/browser:browsertests", | 304 "//chromecast/browser:browsertests", |
| 305 ] | 305 ] |
| 306 } | 306 } |
| 307 | 307 |
| 308 group("cast_shell_lib") { | 308 group("cast_shell_lib") { |
| 309 data_deps = [ | 309 data_deps = [ |
| 310 ":cast_shell_pak", | 310 ":cast_shell_pak", |
| 311 ] | 311 ] |
| 312 | 312 |
| 313 deps = [ | 313 deps = [ |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 455 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
| 456 | 456 |
| 457 deps = [ | 457 deps = [ |
| 458 ":cast_shell_apk_assets", | 458 ":cast_shell_apk_assets", |
| 459 "//base:base_java", | 459 "//base:base_java", |
| 460 "//chromecast/android:libcast_shell_android", | 460 "//chromecast/android:libcast_shell_android", |
| 461 "//chromecast/browser/android:cast_shell_java", | 461 "//chromecast/browser/android:cast_shell_java", |
| 462 ] | 462 ] |
| 463 } | 463 } |
| 464 } | 464 } |
| OLD | NEW |