| 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/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//chromecast/build/tests/cast_test.gni") | 9 import("//chromecast/build/tests/cast_test.gni") |
| 10 import("//chromecast/chromecast.gni") | 10 import("//chromecast/chromecast.gni") |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 if (chromecast_branding != "public") { | 304 if (chromecast_branding != "public") { |
| 305 test_groups += [ "//chromecast/internal:internal_cast_tests" ] | 305 test_groups += [ "//chromecast/internal:internal_cast_tests" ] |
| 306 } | 306 } |
| 307 } | 307 } |
| 308 | 308 |
| 309 if (is_android) { | 309 if (is_android) { |
| 310 cast_test_group("cast_junit_tests") { | 310 cast_test_group("cast_junit_tests") { |
| 311 test_type = "junit" | 311 test_type = "junit" |
| 312 tests = [ | 312 tests = [ |
| 313 "//base:base_junit_tests", | 313 "//base:base_junit_tests", |
| 314 "//chromecast/browser/android:cast_shell_java_junit_tests", |
| 314 "//content/public/android:content_junit_tests", | 315 "//content/public/android:content_junit_tests", |
| 315 "//net/android:net_junit_tests", | 316 "//net/android:net_junit_tests", |
| 316 "//testing/android/junit:junit_unit_tests", | 317 "//testing/android/junit:junit_unit_tests", |
| 317 "//ui/android:ui_junit_tests", | 318 "//ui/android:ui_junit_tests", |
| 318 ] | 319 ] |
| 319 } | 320 } |
| 320 | 321 |
| 321 cast_test_group_list("cast_junit_test_lists") { | 322 cast_test_group_list("cast_junit_test_lists") { |
| 322 test_type = "junit" | 323 test_type = "junit" |
| 323 build_list_path = "$root_out_dir/junit/build_junit_test_list.txt" | 324 build_list_path = "$root_out_dir/junit/build_junit_test_list.txt" |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 491 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
| 491 | 492 |
| 492 deps = [ | 493 deps = [ |
| 493 ":cast_shell_apk_assets", | 494 ":cast_shell_apk_assets", |
| 494 "//base:base_java", | 495 "//base:base_java", |
| 495 "//chromecast/android:libcast_shell_android", | 496 "//chromecast/android:libcast_shell_android", |
| 496 "//chromecast/browser/android:cast_shell_java", | 497 "//chromecast/browser/android:cast_shell_java", |
| 497 ] | 498 ] |
| 498 } | 499 } |
| 499 } | 500 } |
| OLD | NEW |