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