| 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 ] | 315 ] |
| 316 } | 316 } |
| 317 | 317 |
| 318 cast_test_group_list("cast_junit_test_lists") { | 318 cast_test_group_list("cast_junit_test_lists") { |
| 319 test_type = "junit" | 319 test_type = "junit" |
| 320 build_list_path = "$root_out_dir/junit/build_junit_test_list.txt" | 320 build_list_path = "$root_out_dir/junit/build_junit_test_list.txt" |
| 321 runtime_deps_path = "$root_out_dir/junit/runtime_deps.json" | 321 runtime_deps_path = "$root_out_dir/junit/runtime_deps.json" |
| 322 run_list_path = "$root_out_dir/junit/run_junit_test_list.txt" | 322 run_list_path = "$root_out_dir/junit/run_junit_test_list.txt" |
| 323 build_tests = true | 323 build_tests = true |
| 324 test_groups = [ ":cast_junit_tests" ] | 324 test_groups = [ ":cast_junit_tests" ] |
| 325 if (chromecast_branding != "public") { |
| 326 test_groups += [ "//chromecast/internal:internal_cast_junit_tests" ] |
| 327 } |
| 325 } | 328 } |
| 326 } | 329 } |
| 327 | 330 |
| 328 test("cast_shell_unittests") { | 331 test("cast_shell_unittests") { |
| 329 deps = [ | 332 deps = [ |
| 330 ":cast_shell_lib", | 333 ":cast_shell_lib", |
| 331 "//chromecast/app:test_support", | 334 "//chromecast/app:test_support", |
| 332 "//chromecast/app:unittests", | 335 "//chromecast/app:unittests", |
| 333 "//chromecast/browser:unittests", | 336 "//chromecast/browser:unittests", |
| 334 "//ui/gl:test_support", | 337 "//ui/gl:test_support", |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 487 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
| 485 | 488 |
| 486 deps = [ | 489 deps = [ |
| 487 ":cast_shell_apk_assets", | 490 ":cast_shell_apk_assets", |
| 488 "//base:base_java", | 491 "//base:base_java", |
| 489 "//chromecast/android:libcast_shell_android", | 492 "//chromecast/android:libcast_shell_android", |
| 490 "//chromecast/browser/android:cast_shell_java", | 493 "//chromecast/browser/android:cast_shell_java", |
| 491 ] | 494 ] |
| 492 } | 495 } |
| 493 } | 496 } |
| OLD | NEW |