| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 if (use_aura) { | 53 if (use_aura) { |
| 54 tests += [ "//chromecast/graphics:cast_graphics_unittests" ] | 54 tests += [ "//chromecast/graphics:cast_graphics_unittests" ] |
| 55 } | 55 } |
| 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 += [ "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unitte
sts" ] |
| 64 "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unittests", | |
| 65 "//chromecast/media/cma/backend/alsa:libcast_governor_unittests", | |
| 66 "//chromecast/media/cma/backend/alsa:slew_volume_unittests", | |
| 67 ] | |
| 68 } | 64 } |
| 69 | 65 |
| 70 if (!is_android) { | 66 if (!is_android) { |
| 71 tests += [ | 67 tests += [ |
| 72 ":cast_shell_browsertests", | 68 ":cast_shell_browsertests", |
| 73 ":cast_shell_unittests", | 69 ":cast_shell_unittests", |
| 74 "//ipc:ipc_tests", | 70 "//ipc:ipc_tests", |
| 75 "//jingle:jingle_unittests", | 71 "//jingle:jingle_unittests", |
| 76 "//url:url_unittests", | 72 "//url:url_unittests", |
| 77 ] | 73 ] |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 506 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
| 511 | 507 |
| 512 deps = [ | 508 deps = [ |
| 513 ":cast_shell_apk_assets", | 509 ":cast_shell_apk_assets", |
| 514 "//base:base_java", | 510 "//base:base_java", |
| 515 "//chromecast/android:libcast_shell_android", | 511 "//chromecast/android:libcast_shell_android", |
| 516 "//chromecast/browser/android:cast_shell_java", | 512 "//chromecast/browser/android:cast_shell_java", |
| 517 ] | 513 ] |
| 518 } | 514 } |
| 519 } | 515 } |
| OLD | NEW |