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 15 matching lines...) Expand all Loading... |
26 | 26 |
27 # A list of all public test() binaries. This is an organizational target that | 27 # A list of all public test() binaries. This is an organizational target that |
28 # cannot be depended upon or built directly. Build cast_group_test_list instead. | 28 # cannot be depended upon or built directly. Build cast_group_test_list instead. |
29 cast_test_group("cast_tests") { | 29 cast_test_group("cast_tests") { |
30 filters = [] | 30 filters = [] |
31 tests = [ | 31 tests = [ |
32 "//base:base_unittests", | 32 "//base:base_unittests", |
33 "//chromecast/base:cast_base_unittests", | 33 "//chromecast/base:cast_base_unittests", |
34 "//chromecast/base/component:cast_component_unittests", | 34 "//chromecast/base/component:cast_component_unittests", |
35 "//chromecast/crypto:cast_crypto_unittests", | 35 "//chromecast/crypto:cast_crypto_unittests", |
| 36 "//chromecast/graphics:cast_graphics_unittests", |
36 "//chromecast/system/reboot:cast_reboot_unittests", | 37 "//chromecast/system/reboot:cast_reboot_unittests", |
37 "//content/test:content_unittests", | 38 "//content/test:content_unittests", |
38 "//crypto:crypto_unittests", | 39 "//crypto:crypto_unittests", |
39 "//media:media_unittests", | 40 "//media:media_unittests", |
40 "//media/midi:midi_unittests", | 41 "//media/midi:midi_unittests", |
41 "//net:net_unittests", | 42 "//net:net_unittests", |
42 "//ppapi:ppapi_unittests", | 43 "//ppapi:ppapi_unittests", |
43 "//sandbox/linux:sandbox_linux_unittests", | 44 "//sandbox/linux:sandbox_linux_unittests", |
44 "//sql:sql_unittests", | 45 "//sql:sql_unittests", |
45 "//storage/browser:storage_unittests", | 46 "//storage/browser:storage_unittests", |
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 456 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
456 | 457 |
457 deps = [ | 458 deps = [ |
458 ":cast_shell_apk_assets", | 459 ":cast_shell_apk_assets", |
459 "//base:base_java", | 460 "//base:base_java", |
460 "//chromecast/android:libcast_shell_android", | 461 "//chromecast/android:libcast_shell_android", |
461 "//chromecast/browser/android:cast_shell_java", | 462 "//chromecast/browser/android:cast_shell_java", |
462 ] | 463 ] |
463 } | 464 } |
464 } | 465 } |
OLD | NEW |