| 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 24 matching lines...) Expand all Loading... |
| 35 "//chromecast/crypto:cast_crypto_unittests", | 35 "//chromecast/crypto:cast_crypto_unittests", |
| 36 "//chromecast/media:cast_media_unittests", | 36 "//chromecast/media:cast_media_unittests", |
| 37 "//chromecast/system/reboot:cast_reboot_unittests", | 37 "//chromecast/system/reboot:cast_reboot_unittests", |
| 38 "//content/test:content_unittests", | 38 "//content/test:content_unittests", |
| 39 "//crypto:crypto_unittests", | 39 "//crypto:crypto_unittests", |
| 40 "//media:media_unittests", | 40 "//media:media_unittests", |
| 41 "//media/midi:midi_unittests", | 41 "//media/midi:midi_unittests", |
| 42 "//net:net_unittests", | 42 "//net:net_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: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 | 52 |
| 53 if (use_aura) { | 53 if (use_aura) { |
| 54 tests += [ "//chromecast/graphics:cast_graphics_unittests" ] | 54 tests += [ "//chromecast/graphics:cast_graphics_unittests" ] |
| 55 } | 55 } |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 484 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
| 485 | 485 |
| 486 deps = [ | 486 deps = [ |
| 487 ":cast_shell_apk_assets", | 487 ":cast_shell_apk_assets", |
| 488 "//base:base_java", | 488 "//base:base_java", |
| 489 "//chromecast/android:libcast_shell_android", | 489 "//chromecast/android:libcast_shell_android", |
| 490 "//chromecast/browser/android:cast_shell_java", | 490 "//chromecast/browser/android:cast_shell_java", |
| 491 ] | 491 ] |
| 492 } | 492 } |
| 493 } | 493 } |
| OLD | NEW |