| 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/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 22 matching lines...) Expand all Loading... |
| 33 "//chromecast/crypto:cast_crypto_unittests", | 33 "//chromecast/crypto:cast_crypto_unittests", |
| 34 "//chromecast/system/reboot:cast_reboot_unittests", | 34 "//chromecast/system/reboot:cast_reboot_unittests", |
| 35 "//content/test:content_unittests", | 35 "//content/test:content_unittests", |
| 36 "//crypto:crypto_unittests", | 36 "//crypto:crypto_unittests", |
| 37 "//media:media_unittests", | 37 "//media:media_unittests", |
| 38 "//media/midi:midi_unittests", | 38 "//media/midi:midi_unittests", |
| 39 "//net:net_unittests", | 39 "//net:net_unittests", |
| 40 "//ppapi:ppapi_unittests", | 40 "//ppapi:ppapi_unittests", |
| 41 "//sandbox/linux:sandbox_linux_unittests", | 41 "//sandbox/linux:sandbox_linux_unittests", |
| 42 "//sql:sql_unittests", | 42 "//sql:sql_unittests", |
| 43 "//sync:sync_unit_tests", | 43 "//components/sync:sync_unit_tests", |
| 44 "//third_party/cacheinvalidation:cacheinvalidation_unittests", | 44 "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
| 45 "//ui/base:ui_base_unittests", | 45 "//ui/base:ui_base_unittests", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 if (is_linux) { | 48 if (is_linux) { |
| 49 tests += [ "//chromecast/crash:cast_crash_unittests" ] | 49 tests += [ "//chromecast/crash:cast_crash_unittests" ] |
| 50 } | 50 } |
| 51 | 51 |
| 52 filters = [] | 52 filters = [] |
| 53 | 53 |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 apk_name = "CastShell" | 328 apk_name = "CastShell" |
| 329 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" | 329 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" |
| 330 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" | 330 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" |
| 331 deps = [ | 331 deps = [ |
| 332 ":cast_shell_apk_assets", | 332 ":cast_shell_apk_assets", |
| 333 "//chromecast/android:libcast_shell_android", | 333 "//chromecast/android:libcast_shell_android", |
| 334 "//chromecast/browser/android:cast_shell_java", | 334 "//chromecast/browser/android:cast_shell_java", |
| 335 ] | 335 ] |
| 336 } | 336 } |
| 337 } | 337 } |
| OLD | NEW |