Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: build/secondary/third_party/android_tools/BUILD.gn

Issue 2738843003: [Home] Add a bottom navigation bar for the BottomSheet (Closed)
Patch Set: Move proguard exception to different file Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/android/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 } 43 }
44 44
45 android_aar_prebuilt("android_support_design_java") { 45 android_aar_prebuilt("android_support_design_java") {
46 deps = [ 46 deps = [
47 ":android_support_v7_appcompat_java", 47 ":android_support_v7_appcompat_java",
48 ] 48 ]
49 _lib_name = "design" 49 _lib_name = "design"
50 aar_path = "$lib_path/$_lib_name/$lib_version/$_lib_name-$lib_version.aar" 50 aar_path = "$lib_path/$_lib_name/$lib_version/$_lib_name-$lib_version.aar"
51 } 51 }
52 52
53 android_aar_prebuilt("android_support_transition_java") {
54 deps = [
55 ":android_support_v7_appcompat_java",
56 ]
57 _lib_name = "transition"
58 aar_path = "$lib_path/$_lib_name/$lib_version/$_lib_name-$lib_version.aar"
59 }
60
53 android_aar_prebuilt("android_support_multidex_java") { 61 android_aar_prebuilt("android_support_multidex_java") {
54 # TODO(jbudorick): remove requires_android after crbug.com/522043 is fixed. 62 # TODO(jbudorick): remove requires_android after crbug.com/522043 is fixed.
55 requires_android = false 63 requires_android = false
56 aar_path = "$lib_path/multidex/1.0.1/multidex-1.0.1.aar" 64 aar_path = "$lib_path/multidex/1.0.1/multidex-1.0.1.aar"
57 } 65 }
58 66
59 android_java_prebuilt("android_support_annotations_java") { 67 android_java_prebuilt("android_support_annotations_java") {
60 _lib_name = "support-annotations" 68 _lib_name = "support-annotations"
61 jar_path = "$lib_path/$_lib_name/$lib_version/$_lib_name-$lib_version.jar" 69 jar_path = "$lib_path/$_lib_name/$lib_version/$_lib_name-$lib_version.jar"
62 } 70 }
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 290
283 android_aar_prebuilt("google_play_services_vision_java") { 291 android_aar_prebuilt("google_play_services_vision_java") {
284 deps = [ 292 deps = [
285 ":google_play_services_base_java", 293 ":google_play_services_base_java",
286 ":google_play_services_basement_java", 294 ":google_play_services_basement_java",
287 ] 295 ]
288 _lib_name = "play-services-vision" 296 _lib_name = "play-services-vision"
289 aar_path = "$gms_path/$_lib_name/$gms_version/$_lib_name-$gms_version.aar" 297 aar_path = "$gms_path/$_lib_name/$gms_version/$_lib_name-$gms_version.aar"
290 ignore_manifest = true 298 ignore_manifest = true
291 } 299 }
OLDNEW
« no previous file with comments | « no previous file | chrome/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698