| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "//ppapi:ppapi_unittests", | 42 "//ppapi:ppapi_unittests", |
| 43 "//sandbox/linux:sandbox_linux_unittests", | 43 "//sandbox/linux:sandbox_linux_unittests", |
| 44 "//sql:sql_unittests", | 44 "//sql:sql_unittests", |
| 45 "//storage/browser:storage_unittests", | 45 "//storage/browser:storage_unittests", |
| 46 "//third_party/cacheinvalidation:cacheinvalidation_unittests", | 46 "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
| 47 "//ui/base:ui_base_unittests", | 47 "//ui/base:ui_base_unittests", |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 if (!is_cast_audio_only) { | 50 if (!is_cast_audio_only) { |
| 51 tests += [ "//gpu:gpu_unittests" ] | 51 tests += [ "//gpu:gpu_unittests" ] |
| 52 |
| 53 if (use_aura) { |
| 54 tests += [ "//chromecast/graphics:cast_graphics_unittests" ] |
| 55 } |
| 52 } | 56 } |
| 53 | 57 |
| 54 if (is_linux) { | 58 if (is_linux) { |
| 55 tests += [ "//chromecast/crash:cast_crash_unittests" ] | 59 tests += [ "//chromecast/crash:cast_crash_unittests" ] |
| 56 } | 60 } |
| 57 | 61 |
| 58 if (!is_android && use_alsa) { | 62 if (!is_android && use_alsa) { |
| 59 tests += [ "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unitte
sts" ] | 63 tests += [ "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unitte
sts" ] |
| 60 } | 64 } |
| 61 | 65 |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 459 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
| 456 | 460 |
| 457 deps = [ | 461 deps = [ |
| 458 ":cast_shell_apk_assets", | 462 ":cast_shell_apk_assets", |
| 459 "//base:base_java", | 463 "//base:base_java", |
| 460 "//chromecast/android:libcast_shell_android", | 464 "//chromecast/android:libcast_shell_android", |
| 461 "//chromecast/browser/android:cast_shell_java", | 465 "//chromecast/browser/android:cast_shell_java", |
| 462 ] | 466 ] |
| 463 } | 467 } |
| 464 } | 468 } |
| OLD | NEW |