| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 java_group("google_play_services_default_java") { | 119 java_group("google_play_services_default_java") { |
| 120 deps = [ | 120 deps = [ |
| 121 ":google_play_services_auth_base_java", | 121 ":google_play_services_auth_base_java", |
| 122 ":google_play_services_auth_java", | 122 ":google_play_services_auth_java", |
| 123 ":google_play_services_base_java", | 123 ":google_play_services_base_java", |
| 124 ":google_play_services_basement_java", | 124 ":google_play_services_basement_java", |
| 125 ":google_play_services_cast_java", | 125 ":google_play_services_cast_java", |
| 126 ":google_play_services_gcm_java", | 126 ":google_play_services_gcm_java", |
| 127 ":google_play_services_iid_java", | 127 ":google_play_services_iid_java", |
| 128 ":google_play_services_nearby_java", | 128 ":google_play_services_nearby_java", |
| 129 ":google_play_services_vision_java", |
| 129 ] | 130 ] |
| 130 } | 131 } |
| 131 | 132 |
| 132 android_aar_prebuilt("android_support_v17_leanback_java") { | 133 android_aar_prebuilt("android_support_v17_leanback_java") { |
| 133 deps = [ | 134 deps = [ |
| 134 ":android_support_v7_recyclerview_java", | 135 ":android_support_v7_recyclerview_java", |
| 135 ] | 136 ] |
| 136 _lib_name = "leanback-v17" | 137 _lib_name = "leanback-v17" |
| 137 aar_path = "$lib_path/$_lib_name/$lib_version/$_lib_name-$lib_version.aar" | 138 aar_path = "$lib_path/$_lib_name/$lib_version/$_lib_name-$lib_version.aar" |
| 138 } | 139 } |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 | 232 |
| 232 android_aar_prebuilt("google_play_services_nearby_java") { | 233 android_aar_prebuilt("google_play_services_nearby_java") { |
| 233 deps = [ | 234 deps = [ |
| 234 ":google_play_services_base_java", | 235 ":google_play_services_base_java", |
| 235 ":google_play_services_basement_java", | 236 ":google_play_services_basement_java", |
| 236 ] | 237 ] |
| 237 _lib_name = "play-services-nearby" | 238 _lib_name = "play-services-nearby" |
| 238 aar_path = "$gms_path/$_lib_name/$gms_version/$_lib_name-$gms_version.aar" | 239 aar_path = "$gms_path/$_lib_name/$gms_version/$_lib_name-$gms_version.aar" |
| 239 ignore_manifest = true | 240 ignore_manifest = true |
| 240 } | 241 } |
| 242 |
| 243 android_aar_prebuilt("google_play_services_vision_java") { |
| 244 deps = [ |
| 245 ":google_play_services_base_java", |
| 246 ":google_play_services_basement_java", |
| 247 ] |
| 248 _lib_name = "play-services-vision" |
| 249 aar_path = "$gms_path/$_lib_name/$gms_version/$_lib_name-$gms_version.aar" |
| 250 ignore_manifest = true |
| 251 } |
| OLD | NEW |