Commit d340c5e1 authored by Peter Wen's avatar Peter Wen Committed by Commit Bot

Android: Use android_deps for play services APIs

- Rename `repository` to `libs` in order to stop git complaining about
  previously ignored *.info files being overwitten (since we are now
  including them in the repo) when cherry picking
  - Nice side benefit of resetting to -cr0 for packages

- Add gms libraries, previously defined in
  `build/secondary/third_party/android_tools/BUILD.gn`

- Add `third_party/android_deps/Android_SDK_License-December_9_2016.txt`
  - This is used for all gms dependencies which require this license
  - Taken from `https://developer.android.com/studio/terms`

- Pass in output file directly to `aar.py`

- Add .info files to the repository and remove from `.gitignore`

- Increment crX suffix for CIPD packages in order to avoid duplicate
  tags

- Add OWNERS in each package's subdirectory under `libs` so that future
  version upgrades will not require full review, but new packages will
  still go through full third_party review.

Bug: 865020, 865065, 863547
Change-Id: I91cc400d02ce83e0195d8aab3f76939d6ddcb120
Reviewed-on: https://chromium-review.googlesource.com/1142189Reviewed-by: default avatarGrace Kloba <klobag@chromium.org>
Reviewed-by: default avatarJohn Budorick <jbudorick@chromium.org>
Commit-Queue: Peter Wen <wnwen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#578434}
parent 32f4f17b
This diff is collapsed.
...@@ -209,11 +209,6 @@ if (is_android || is_chromeos) { ...@@ -209,11 +209,6 @@ if (is_android || is_chromeos) {
# Refer to android_aar_prebuilt() for more details. # Refer to android_aar_prebuilt() for more details.
update_android_aar_prebuilts = false update_android_aar_prebuilts = false
# When true, uses the third party libraries from //third_party/android_deps
# over the ones in other places. (instead of the support library from
# android_tools for example)
enable_android_deps_repository = true
# Turns off android lint. Useful for prototyping or for faster local builds. # Turns off android lint. Useful for prototyping or for faster local builds.
disable_android_lint = false disable_android_lint = false
} }
......
...@@ -3870,44 +3870,3 @@ if (enable_java_templates) { ...@@ -3870,44 +3870,3 @@ if (enable_java_templates) {
} }
} }
} }
# Compatibility wrapper to toggle android_deps usage for a dependency.
#
# This target creates a wrapper for a dependency allowing it to be loaded
# either from //third_party/android_deps or from an existing //third_party
# (or other) target.
#
# Variables
# fallback_target: Target to use when the android_deps repo is not enabled.
# android_deps_target_name: Name of the target from the android_deps repo to
# use when the repo is enabled. Is not set, the wrapper's target name will
# be used instead.
#
# Example
# prebuilt_wrapper("android_support_multidex_java") {
# android_deps_target_name = "com_android_support_multidex_java"
# fallback_target = "$android_support_library_package:$target_name"
# }
template("prebuilt_wrapper") {
if (defined(invoker.android_deps_target_name)) {
_resolved_android_deps_target_name = invoker.android_deps_target_name
} else {
_resolved_android_deps_target_name = target_name
}
if (enable_android_deps_repository) {
_resolved_target =
"//third_party/android_deps:${_resolved_android_deps_target_name}"
assert(invoker.fallback_target != "") # Mark as used.
} else {
_resolved_target = "${invoker.fallback_target}"
assert(_resolved_android_deps_target_name != "") # Mark as used.
}
java_group(target_name) {
forward_variables_from(invoker, [ "testonly" ])
deps = [
_resolved_target,
]
}
}
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
ANDROID_WHITELISTED_LICENSES = [ ANDROID_WHITELISTED_LICENSES = [
'A(pple )?PSL 2(\.0)?', 'A(pple )?PSL 2(\.0)?',
'Android Software Development Kit License',
'Apache( Version)? 2(\.0)?', 'Apache( Version)? 2(\.0)?',
'(New )?([23]-Clause )?BSD( [23]-Clause)?( with advertising clause)?', '(New )?([23]-Clause )?BSD( [23]-Clause)?( with advertising clause)?',
'L?GPL ?v?2(\.[01])?( or later)?', 'L?GPL ?v?2(\.[01])?( or later)?',
......
# JAR, AAR and info files will be fetched via CIPD. # JAR and AAR files will be fetched via CIPD.
repository/*/*.jar libs/*/*.jar
repository/*/*.aar libs/*/*.aar
repository/*/*.info
This diff is collapsed.
agrieve@chromium.org agrieve@chromium.org
bauerb@chromium.org bauerb@chromium.org
dgn@chromium.org
jbudorick@chromium.org jbudorick@chromium.org
wnwen@chromium.org
[ [
"repository/android_arch_core_common", "libs/android_arch_core_common",
"repository/android_arch_lifecycle_common", "libs/android_arch_lifecycle_common",
"repository/android_arch_lifecycle_runtime", "libs/android_arch_lifecycle_runtime",
"repository/com_android_support_animated_vector_drawable", "libs/com_android_support_animated_vector_drawable",
"repository/com_android_support_appcompat_v7", "libs/com_android_support_appcompat_v7",
"repository/com_android_support_cardview_v7", "libs/com_android_support_cardview_v7",
"repository/com_android_support_design", "libs/com_android_support_design",
"repository/com_android_support_gridlayout_v7", "libs/com_android_support_gridlayout_v7",
"repository/com_android_support_leanback_v17", "libs/com_android_support_leanback_v17",
"repository/com_android_support_mediarouter_v7", "libs/com_android_support_mediarouter_v7",
"repository/com_android_support_multidex", "libs/com_android_support_multidex",
"repository/com_android_support_palette_v7", "libs/com_android_support_palette_v7",
"repository/com_android_support_preference_leanback_v17", "libs/com_android_support_preference_leanback_v17",
"repository/com_android_support_preference_v14", "libs/com_android_support_preference_v14",
"repository/com_android_support_preference_v7", "libs/com_android_support_preference_v7",
"repository/com_android_support_recyclerview_v7", "libs/com_android_support_recyclerview_v7",
"repository/com_android_support_support_annotations", "libs/com_android_support_support_annotations",
"repository/com_android_support_support_compat", "libs/com_android_support_support_compat",
"repository/com_android_support_support_core_ui", "libs/com_android_support_support_core_ui",
"repository/com_android_support_support_core_utils", "libs/com_android_support_support_core_utils",
"repository/com_android_support_support_fragment", "libs/com_android_support_support_fragment",
"repository/com_android_support_support_media_compat", "libs/com_android_support_support_media_compat",
"repository/com_android_support_support_v13", "libs/com_android_support_support_v13",
"repository/com_android_support_support_v4", "libs/com_android_support_support_v4",
"repository/com_android_support_support_vector_drawable", "libs/com_android_support_support_vector_drawable",
"repository/com_android_support_transition" "libs/com_android_support_transition",
"libs/com_google_android_gms_play_services_auth",
"libs/com_google_android_gms_play_services_auth_api_phone",
"libs/com_google_android_gms_play_services_auth_base",
"libs/com_google_android_gms_play_services_base",
"libs/com_google_android_gms_play_services_basement",
"libs/com_google_android_gms_play_services_cast",
"libs/com_google_android_gms_play_services_cast_framework",
"libs/com_google_android_gms_play_services_fido",
"libs/com_google_android_gms_play_services_gcm",
"libs/com_google_android_gms_play_services_iid",
"libs/com_google_android_gms_play_services_instantapps",
"libs/com_google_android_gms_play_services_location",
"libs/com_google_android_gms_play_services_tasks",
"libs/com_google_android_gms_play_services_vision",
"libs/com_google_android_gms_play_services_vision_common"
] ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:1.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:1.0.0-cr0
package: chromium/third_party/android_deps/repository/android_arch_core_common package: chromium/third_party/android_deps/libs/android_arch_core_common
description: Android Arch-Common description: Android Arch-Common
data: data:
- file: common-1.0.0.jar - file: common-1.0.0.jar
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:1.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:1.0.0-cr0
package: chromium/third_party/android_deps/repository/android_arch_lifecycle_common package: chromium/third_party/android_deps/libs/android_arch_lifecycle_common
description: Android Lifecycle-Common description: Android Lifecycle-Common
data: data:
- file: common-1.0.0.jar - file: common-1.0.0.jar
file://third_party/android_deps/OWNERS
\ No newline at end of file
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = true
has_r_text_file = false
is_manifest_empty = false
resources = [ ]
subjar_tuples = [ ]
subjars = [ ]
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:1.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:1.0.0-cr0
package: chromium/third_party/android_deps/repository/android_arch_lifecycle_runtime package: chromium/third_party/android_deps/libs/android_arch_lifecycle_runtime
description: Android Lifecycle Runtime description: Android Lifecycle Runtime
data: data:
- file: runtime-1.0.0.aar - file: runtime-1.0.0.aar
- file: android_arch_lifecycle_runtime.info
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_animated_vector_drawable package: chromium/third_party/android_deps/libs/com_android_support_animated_vector_drawable
description: Android Support AnimatedVectorDrawable description: Android Support AnimatedVectorDrawable
data: data:
- file: animated-vector-drawable-27.0.0.aar - file: animated-vector-drawable-27.0.0.aar
- file: com_android_support_animated_vector_drawable.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = true
has_r_text_file = true
is_manifest_empty = true
resources = [ ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_appcompat_v7 package: chromium/third_party/android_deps/libs/com_android_support_appcompat_v7
description: Android AppCompat Library v7 description: Android AppCompat Library v7
data: data:
- file: appcompat-v7-27.0.0.aar - file: appcompat-v7-27.0.0.aar
- file: com_android_support_appcompat_v7.info
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_cardview_v7 package: chromium/third_party/android_deps/libs/com_android_support_cardview_v7
description: Android Support CardView v7 description: Android Support CardView v7
data: data:
- file: cardview-v7-27.0.0.aar - file: cardview-v7-27.0.0.aar
- file: com_android_support_cardview_v7.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = false
has_r_text_file = true
is_manifest_empty = true
resources = [ "res/values-v23/values-v23.xml", "res/values/values.xml" ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_design package: chromium/third_party/android_deps/libs/com_android_support_design
description: Android Design Support Library description: Android Design Support Library
data: data:
- file: design-27.0.0.aar - file: design-27.0.0.aar
- file: com_android_support_design.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = true
has_r_text_file = true
is_manifest_empty = true
resources = [ "res/drawable-hdpi-v4/design_ic_visibility.png", "res/drawable-hdpi-v4/design_ic_visibility_off.png", "res/layout/design_bottom_sheet_dialog.xml", "res/layout/design_layout_tab_text.xml", "res/layout/design_bottom_navigation_item.xml", "res/layout/design_navigation_item.xml", "res/layout/design_layout_snackbar_include.xml", "res/layout/design_navigation_menu.xml", "res/layout/design_navigation_item_header.xml", "res/layout/design_navigation_item_separator.xml", "res/layout/design_layout_snackbar.xml", "res/layout/design_text_input_password_icon.xml", "res/layout/design_layout_tab_icon.xml", "res/layout/design_navigation_item_subheader.xml", "res/layout/design_menu_item_action_area.xml", "res/layout/design_navigation_menu_item.xml", "res/values-v21/values-v21.xml", "res/drawable-anydpi-v21/design_ic_visibility.xml", "res/drawable-anydpi-v21/design_ic_visibility_off.xml", "res/layout-sw600dp-v13/design_layout_snackbar.xml", "res/drawable-xxhdpi-v4/design_ic_visibility.png", "res/drawable-xxhdpi-v4/design_ic_visibility_off.png", "res/color/design_error.xml", "res/color/design_tint_password_toggle.xml", "res/animator-v21/design_appbar_state_list_animator.xml", "res/drawable-mdpi-v4/design_ic_visibility.png", "res/drawable-mdpi-v4/design_ic_visibility_off.png", "res/values/values.xml", "res/drawable-xhdpi-v4/design_ic_visibility.png", "res/drawable-xhdpi-v4/design_ic_visibility_off.png", "res/values-land/values-land.xml", "res/values-sw600dp-v13/values-sw600dp-v13.xml", "res/anim/design_snackbar_out.xml", "res/anim/design_snackbar_in.xml", "res/anim/design_bottom_sheet_slide_out.xml", "res/anim/design_bottom_sheet_slide_in.xml", "res/drawable-xxxhdpi-v4/design_ic_visibility.png", "res/drawable-xxxhdpi-v4/design_ic_visibility_off.png", "res/anim-v21/design_bottom_sheet_slide_out.xml", "res/anim-v21/design_bottom_sheet_slide_in.xml", "res/values-v26/values-v26.xml", "res/color-v23/design_tint_password_toggle.xml", "res/drawable/design_snackbar_background.xml", "res/drawable/design_fab_background.xml", "res/drawable/design_password_eye.xml", "res/drawable/navigation_empty_icon.xml", "res/drawable/design_bottom_navigation_item_background.xml", "res/drawable-v21/avd_hide_password.xml", "res/drawable-v21/avd_show_password.xml", "res/drawable-v21/design_password_eye.xml", "res/drawable-v21/design_bottom_navigation_item_background.xml" ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_gridlayout_v7 package: chromium/third_party/android_deps/libs/com_android_support_gridlayout_v7
description: Android Support Grid Layout description: Android Support Grid Layout
data: data:
- file: gridlayout-v7-27.0.0.aar - file: gridlayout-v7-27.0.0.aar
- file: com_android_support_gridlayout_v7.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = false
has_r_text_file = true
is_manifest_empty = true
resources = [ "res/values/values.xml" ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_leanback_v17 package: chromium/third_party/android_deps/libs/com_android_support_leanback_v17
description: Android Support Leanback v17 description: Android Support Leanback v17
data: data:
- file: leanback-v17-27.0.0.aar - file: leanback-v17-27.0.0.aar
- file: com_android_support_leanback_v17.info
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_mediarouter_v7 package: chromium/third_party/android_deps/libs/com_android_support_mediarouter_v7
description: Android MediaRouter Support Library description: Android MediaRouter Support Library
data: data:
- file: mediarouter-v7-27.0.0.aar - file: mediarouter-v7-27.0.0.aar
- file: com_android_support_mediarouter_v7.info
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:1.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:1.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_multidex package: chromium/third_party/android_deps/libs/com_android_support_multidex
description: Android Multi-Dex Library description: Android Multi-Dex Library
data: data:
- file: multidex-1.0.0.aar - file: multidex-1.0.0.aar
- file: com_android_support_multidex.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = false
has_r_text_file = false
is_manifest_empty = true
resources = [ ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_palette_v7 package: chromium/third_party/android_deps/libs/com_android_support_palette_v7
description: Android Support Palette v7 description: Android Support Palette v7
data: data:
- file: palette-v7-27.0.0.aar - file: palette-v7-27.0.0.aar
- file: com_android_support_palette_v7.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = false
has_r_text_file = true
is_manifest_empty = true
resources = [ ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_preference_leanback_v17 package: chromium/third_party/android_deps/libs/com_android_support_preference_leanback_v17
description: Android Support Leanback Preference v17 description: Android Support Leanback Preference v17
data: data:
- file: preference-leanback-v17-27.0.0.aar - file: preference-leanback-v17-27.0.0.aar
- file: com_android_support_preference_leanback_v17.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = false
has_r_text_file = true
is_manifest_empty = true
resources = [ "res/layout/leanback_preference_widget_seekbar.xml", "res/layout/leanback_preference_information.xml", "res/layout/leanback_preference.xml", "res/layout/leanback_preferences_list.xml", "res/layout/leanback_settings_fragment.xml", "res/layout/leanback_list_preference_item_single.xml", "res/layout/leanback_preference_category.xml", "res/layout/leanback_list_preference_fragment.xml", "res/layout/leanback_list_preference_item_multi.xml", "res/layout/leanback_preference_fragment.xml", "res/color/lb_preference_item_primary_text_color.xml", "res/color/lb_preference_item_secondary_text_color.xml", "res/values/values.xml", "res/layout-v21/leanback_settings_fragment.xml", "res/layout-v21/leanback_preference_category.xml" ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_preference_v14 package: chromium/third_party/android_deps/libs/com_android_support_preference_v14
description: Android Support Preference v14 description: Android Support Preference v14
data: data:
- file: preference-v14-27.0.0.aar - file: preference-v14-27.0.0.aar
- file: com_android_support_preference_v14.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = false
has_r_text_file = true
is_manifest_empty = true
resources = [ "res/layout/preference_information_material.xml", "res/layout/preference_widget_seekbar_material.xml", "res/layout/preference_category_material.xml", "res/layout/preference_dropdown_material.xml", "res/layout/preference_widget_switch.xml", "res/layout/preference_material.xml", "res/values/values.xml", "res/values-v17/values-v17.xml", "res/drawable/preference_list_divider_material.xml", "res/layout-v21/preference_information_material.xml", "res/layout-v21/preference_category_material.xml", "res/layout-v21/preference_dropdown_material.xml", "res/layout-v21/preference_material.xml", "res/drawable-v21/preference_list_divider_material.xml", "res/layout-v17/preference_information_material.xml", "res/layout-v17/preference_category_material.xml", "res/layout-v17/preference_dropdown_material.xml", "res/layout-v17/preference_material.xml" ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_preference_v7 package: chromium/third_party/android_deps/libs/com_android_support_preference_v7
description: Android Support Preference v7 description: Android Support Preference v7
data: data:
- file: preference-v7-27.0.0.aar - file: preference-v7-27.0.0.aar
- file: com_android_support_preference_v7.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = true
has_r_text_file = true
is_manifest_empty = true
resources = [ "res/layout-v11/preference.xml", "res/layout-v11/preference_dropdown.xml", "res/layout/preference_recyclerview.xml", "res/layout/preference_widget_checkbox.xml", "res/layout/preference_widget_seekbar.xml", "res/layout/preference_widget_switch_compat.xml", "res/layout/preference_list_fragment.xml", "res/layout/preference_dialog_edittext.xml", "res/layout/preference_information.xml", "res/layout/preference_category.xml", "res/values/values.xml", "res/values-v17/values-v17.xml" ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_recyclerview_v7 package: chromium/third_party/android_deps/libs/com_android_support_recyclerview_v7
description: Android Support RecyclerView v7 description: Android Support RecyclerView v7
data: data:
- file: recyclerview-v7-27.0.0.aar - file: recyclerview-v7-27.0.0.aar
- file: com_android_support_recyclerview_v7.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = true
has_r_text_file = true
is_manifest_empty = true
resources = [ "res/values/values.xml" ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_support_annotations package: chromium/third_party/android_deps/libs/com_android_support_support_annotations
description: Android Support Library Annotations description: Android Support Library Annotations
data: data:
- file: support-annotations-27.0.0.jar - file: support-annotations-27.0.0.jar
file://third_party/android_deps/OWNERS
\ No newline at end of file
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
# To create CIPD package run the following command. # To create CIPD package run the following command.
# cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0 # cipd create --pkg-def cipd.yaml -tag version:27.0.0-cr0
package: chromium/third_party/android_deps/repository/com_android_support_support_compat package: chromium/third_party/android_deps/libs/com_android_support_support_compat
description: Android Support Library compat description: Android Support Library compat
data: data:
- file: support-compat-27.0.0.aar - file: support-compat-27.0.0.aar
- file: com_android_support_support_compat.info
# Generated by //build/android/gyp/aar.py
# To regenerate, use "update_android_aar_prebuilts = true" and run "gn gen".
aidl = [ "aidl/android/support/v4/os/ResultReceiver.aidl" ]
assets = [ ]
has_classes_jar = true
has_native_libraries = false
has_proguard_flags = false
has_r_text_file = true
is_manifest_empty = true
resources = [ "res/values-ur/values-ur.xml", "res/values-ru/values-ru.xml", "res/values-en-rGB/values-en-rGB.xml", "res/values-pt-rBR/values-pt-rBR.xml", "res/values-el/values-el.xml", "res/drawable-hdpi-v4/notification_bg_low_normal.9.png", "res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png", "res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png", "res/drawable-hdpi-v4/notification_bg_normal.9.png", "res/drawable-hdpi-v4/notification_bg_low_pressed.9.png", "res/values-tr/values-tr.xml", "res/values-hu/values-hu.xml", "res/values-km/values-km.xml", "res/values-fr-rCA/values-fr-rCA.xml", "res/values-gu/values-gu.xml", "res/layout/notification_template_icon_group.xml", "res/layout/notification_template_custom_big.xml", "res/layout/notification_template_part_time.xml", "res/layout/notification_template_part_chronometer.xml", "res/layout/notification_action_tombstone.xml", "res/layout/notification_action.xml", "res/values-ms/values-ms.xml", "res/values-v21/values-v21.xml", "res/values-ja/values-ja.xml", "res/values-eu/values-eu.xml", "res/values-sv/values-sv.xml", "res/values-mn/values-mn.xml", "res/layout-v16/notification_template_custom_big.xml", "res/values-ta/values-ta.xml", "res/values-pl/values-pl.xml", "res/values-lt/values-lt.xml", "res/values-bg/values-bg.xml", "res/values-es-rUS/values-es-rUS.xml", "res/values-iw/values-iw.xml", "res/values-mr/values-mr.xml", "res/values-uz/values-uz.xml", "res/values-pa/values-pa.xml", "res/values-fi/values-fi.xml", "res/values-am/values-am.xml", "res/values-pt-rPT/values-pt-rPT.xml", "res/values-ar/values-ar.xml", "res/values-ky/values-ky.xml", "res/drawable-mdpi-v4/notification_bg_low_normal.9.png", "res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png", "res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png", "res/drawable-mdpi-v4/notification_bg_normal.9.png", "res/drawable-mdpi-v4/notification_bg_low_pressed.9.png", "res/values-bs/values-bs.xml", "res/values/values.xml", "res/values-hr/values-hr.xml", "res/values-en-rAU/values-en-rAU.xml", "res/values-ro/values-ro.xml", "res/drawable-xhdpi-v4/notification_bg_low_normal.9.png", "res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png", "res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png", "res/drawable-xhdpi-v4/notification_bg_normal.9.png", "res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png", "res/values-vi/values-vi.xml", "res/values-ko/values-ko.xml", "res/values-zh-rTW/values-zh-rTW.xml", "res/values-cs/values-cs.xml", "res/values-ml/values-ml.xml", "res/values-te/values-te.xml", "res/values-si/values-si.xml", "res/values-es/values-es.xml", "res/values-af/values-af.xml", "res/values-zu/values-zu.xml", "res/values-lo/values-lo.xml", "res/values-mk/values-mk.xml", "res/values-sl/values-sl.xml", "res/values-sw/values-sw.xml", "res/values-bn/values-bn.xml", "res/values-sk/values-sk.xml", "res/values-lv/values-lv.xml", "res/values-is/values-is.xml", "res/values-da/values-da.xml", "res/values-it/values-it.xml", "res/values-gl/values-gl.xml", "res/values-de/values-de.xml", "res/values-be/values-be.xml", "res/values-fa/values-fa.xml", "res/values-ca/values-ca.xml", "res/values-th/values-th.xml", "res/values-nl/values-nl.xml", "res/values-hy/values-hy.xml", "res/values-zh-rHK/values-zh-rHK.xml", "res/values-tl/values-tl.xml", "res/values-kk/values-kk.xml", "res/values-pt/values-pt.xml", "res/values-my/values-my.xml", "res/values-et/values-et.xml", "res/values-en-rIN/values-en-rIN.xml", "res/values-sr/values-sr.xml", "res/values-v16/values-v16.xml", "res/values-fr/values-fr.xml", "res/values-kn/values-kn.xml", "res/values-nb/values-nb.xml", "res/values-port/values-port.xml", "res/values-ne/values-ne.xml", "res/drawable/notification_bg_low.xml", "res/drawable/notification_bg.xml", "res/drawable/notification_icon_background.xml", "res/drawable/notification_tile_bg.xml", "res/values-b+sr+Latn/values-b+sr+Latn.xml", "res/values-ka/values-ka.xml", "res/values-zh-rCN/values-zh-rCN.xml", "res/values-az/values-az.xml", "res/values-sq/values-sq.xml", "res/values-hi/values-hi.xml", "res/layout-v21/notification_template_icon_group.xml", "res/layout-v21/notification_template_custom_big.xml", "res/layout-v21/notification_action_tombstone.xml", "res/layout-v21/notification_action.xml", "res/values-in/values-in.xml", "res/values-uk/values-uk.xml", "res/drawable-v21/notification_action_background.xml" ]
subjar_tuples = [ ]
subjars = [ ]
file://third_party/android_deps/OWNERS
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment