| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
| 6 | 6 |
| 7 assert(is_android) | 7 assert(is_android) |
| 8 | 8 |
| 9 cast_shell_android_manifest = | 9 cast_shell_android_manifest = |
| 10 "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" | 10 "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 android_manifest = cast_shell_android_manifest | 38 android_manifest = cast_shell_android_manifest |
| 39 | 39 |
| 40 deps = [ | 40 deps = [ |
| 41 ":cast_shell_android_resources", | 41 ":cast_shell_android_resources", |
| 42 ":cast_shell_manifest", | 42 ":cast_shell_manifest", |
| 43 "//base:base_java", | 43 "//base:base_java", |
| 44 "//chromecast/base:base_java", | 44 "//chromecast/base:base_java", |
| 45 "//content/public/android:content_java", | 45 "//content/public/android:content_java", |
| 46 "//device/geolocation:geolocation_java", |
| 46 "//media/base/android:media_java", | 47 "//media/base/android:media_java", |
| 47 "//net/android:net_java", | 48 "//net/android:net_java", |
| 48 | 49 |
| 49 # TODO(slan): We may need to pass this in as a parameter. | 50 # TODO(slan): We may need to pass this in as a parameter. |
| 50 "//third_party/android_tools:android_support_v4_java", | 51 "//third_party/android_tools:android_support_v4_java", |
| 51 "//ui/android:ui_java", | 52 "//ui/android:ui_java", |
| 52 ] | 53 ] |
| 53 } | 54 } |
| OLD | NEW |