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 if (!defined(default_android_support_library_version)) { | 7 if (!defined(default_android_support_library_version)) { |
8 default_android_support_library_version = "25.0.1" | 8 default_android_support_library_version = "25.0.1" |
9 } | 9 } |
10 | 10 |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 | 336 |
337 android_aar_prebuilt("google_play_services_vision_java") { | 337 android_aar_prebuilt("google_play_services_vision_java") { |
338 deps = [ | 338 deps = [ |
339 ":google_play_services_base_java", | 339 ":google_play_services_base_java", |
340 ":google_play_services_basement_java", | 340 ":google_play_services_basement_java", |
341 ] | 341 ] |
342 _lib_name = "play-services-vision" | 342 _lib_name = "play-services-vision" |
343 aar_path = "$gms_path/$_lib_name/$gms_version/$_lib_name-$gms_version.aar" | 343 aar_path = "$gms_path/$_lib_name/$gms_version/$_lib_name-$gms_version.aar" |
344 ignore_manifest = true | 344 ignore_manifest = true |
345 } | 345 } |
346 | |
347 # TODO(paulmiller): Replace this with a proper target after rolling to a GMS | |
348 # version which has vision-common. | |
349 java_group("google_play_services_vision_common_java") { | |
350 deps = [ | |
351 ":google_play_services_vision_java", | |
352 ] | |
353 } | |
OLD | NEW |