| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 config("cpu_features_include") { | 7 config("cpu_features_include") { |
| 8 include_dirs = [ "$android_ndk_root/sources/android/cpufeatures" ] | 8 include_dirs = [ "$android_ndk_root/sources/android/cpufeatures" ] |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 ":android_support_v17_leanback_java", | 186 ":android_support_v17_leanback_java", |
| 187 ":android_support_v4_java", | 187 ":android_support_v4_java", |
| 188 ":android_support_v7_appcompat_java", | 188 ":android_support_v7_appcompat_java", |
| 189 ":android_support_v7_preference_java", | 189 ":android_support_v7_preference_java", |
| 190 ":android_support_v7_recyclerview_java", | 190 ":android_support_v7_recyclerview_java", |
| 191 ] | 191 ] |
| 192 _lib_name = "preference-leanback-v17" | 192 _lib_name = "preference-leanback-v17" |
| 193 aar_path = "$lib_path/$_lib_name/$lib_version/$_lib_name-$lib_version.aar" | 193 aar_path = "$lib_path/$_lib_name/$lib_version/$_lib_name-$lib_version.aar" |
| 194 } | 194 } |
| 195 | 195 |
| 196 android_library("android_support_chromium_java") { |
| 197 testonly = true |
| 198 java_files = [ "$android_sdk_root/extras/chromium/support/src/org/chromium/and
roid/support/PackageManagerWrapper.java" ] |
| 199 } |
| 200 |
| 196 # TODO(dgn): Remove this once no other target has a dependency on it | 201 # TODO(dgn): Remove this once no other target has a dependency on it |
| 197 java_group("google_play_services_default_resources") { | 202 java_group("google_play_services_default_resources") { |
| 198 deps = [] | 203 deps = [] |
| 199 } | 204 } |
| 200 | 205 |
| 201 # TODO(dgn): Remove this once other targets register dependencies on only the | 206 # TODO(dgn): Remove this once other targets register dependencies on only the |
| 202 # modules they need. | 207 # modules they need. |
| 203 java_group("google_play_services_default_java") { | 208 java_group("google_play_services_default_java") { |
| 204 deps = [ | 209 deps = [ |
| 205 ":google_play_services_auth_base_java", | 210 ":google_play_services_auth_base_java", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 | 328 |
| 324 android_aar_prebuilt("google_play_services_vision_java") { | 329 android_aar_prebuilt("google_play_services_vision_java") { |
| 325 deps = [ | 330 deps = [ |
| 326 ":google_play_services_base_java", | 331 ":google_play_services_base_java", |
| 327 ":google_play_services_basement_java", | 332 ":google_play_services_basement_java", |
| 328 ] | 333 ] |
| 329 _lib_name = "play-services-vision" | 334 _lib_name = "play-services-vision" |
| 330 aar_path = "$gms_path/$_lib_name/$gms_version/$_lib_name-$gms_version.aar" | 335 aar_path = "$gms_path/$_lib_name/$gms_version/$_lib_name-$gms_version.aar" |
| 331 ignore_manifest = true | 336 ignore_manifest = true |
| 332 } | 337 } |
| OLD | NEW |