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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 } | 56 } |
57 | 57 |
58 if (is_linux) { | 58 if (is_linux) { |
59 tests += [ "//chromecast/crash:cast_crash_unittests" ] | 59 tests += [ "//chromecast/crash:cast_crash_unittests" ] |
60 } | 60 } |
61 | 61 |
62 if (!is_android && use_alsa) { | 62 if (!is_android && use_alsa) { |
63 tests += [ | 63 tests += [ |
64 "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittests", | 64 "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittests", |
65 "//chromecast/media/cma/backend/alsa:libcast_governor_unittests", | 65 "//chromecast/media/cma/backend/alsa:libcast_governor_unittests", |
| 66 "//chromecast/media/cma/backend/alsa:libcast_saturated_gain_unittests", |
66 "//chromecast/media/cma/backend/alsa:slew_volume_unittests", | 67 "//chromecast/media/cma/backend/alsa:slew_volume_unittests", |
67 ] | 68 ] |
68 } | 69 } |
69 | 70 |
70 if (!is_android) { | 71 if (!is_android) { |
71 tests += [ | 72 tests += [ |
72 ":cast_shell_browsertests", | 73 ":cast_shell_browsertests", |
73 ":cast_shell_unittests", | 74 ":cast_shell_unittests", |
74 "//ipc:ipc_tests", | 75 "//ipc:ipc_tests", |
75 "//jingle:jingle_unittests", | 76 "//jingle:jingle_unittests", |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 500 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
500 | 501 |
501 deps = [ | 502 deps = [ |
502 ":cast_shell_apk_assets", | 503 ":cast_shell_apk_assets", |
503 "//base:base_java", | 504 "//base:base_java", |
504 "//chromecast/android:libcast_shell_android", | 505 "//chromecast/android:libcast_shell_android", |
505 "//chromecast/browser/android:cast_shell_java", | 506 "//chromecast/browser/android:cast_shell_java", |
506 ] | 507 ] |
507 } | 508 } |
508 } | 509 } |
OLD | NEW |