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

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

Issue 1822273002: Add a dependency on the CardView support library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 = [ "ndk/sources/android/cpufeatures" ] 8 include_dirs = [ "ndk/sources/android/cpufeatures" ]
9 } 9 }
10 10
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 custom_package = "android.support.v7.appcompat" 65 custom_package = "android.support.v7.appcompat"
66 } 66 }
67 67
68 android_java_prebuilt("android_support_v7_appcompat_java") { 68 android_java_prebuilt("android_support_v7_appcompat_java") {
69 deps = [ 69 deps = [
70 ":android_support_v7_appcompat_resources", 70 ":android_support_v7_appcompat_resources",
71 ] 71 ]
72 jar_path = "$android_sdk_root/extras/android/support/v7/appcompat/libs/android -support-v7-appcompat.jar" 72 jar_path = "$android_sdk_root/extras/android/support/v7/appcompat/libs/android -support-v7-appcompat.jar"
73 } 73 }
74 74
75 android_resources("android_support_v7_cardview_resources") {
76 v14_skip = true
77 resource_dirs = [ "$android_sdk_root/extras/android/support/v7/cardview/res" ]
78 deps = [
79 ":android_support_v7_appcompat_resources",
80 ]
81 custom_package = "android.support.v7.cardview"
82 }
83
84 android_java_prebuilt("android_support_v7_cardview_java") {
85 deps = [
86 ":android_support_v7_appcompat_java",
87 ":android_support_v7_cardview_resources",
88 ]
89 jar_path = "$android_sdk_root/extras/android/support/v7/cardview/libs/android- support-v7-cardview.jar"
90 }
91
75 android_resources("android_support_v7_mediarouter_resources") { 92 android_resources("android_support_v7_mediarouter_resources") {
76 v14_skip = true 93 v14_skip = true
77 resource_dirs = 94 resource_dirs =
78 [ "$android_sdk_root/extras/android/support/v7/mediarouter/res" ] 95 [ "$android_sdk_root/extras/android/support/v7/mediarouter/res" ]
79 deps = [ 96 deps = [
80 ":android_support_v7_appcompat_resources", 97 ":android_support_v7_appcompat_resources",
81 ] 98 ]
82 custom_package = "android.support.v7.mediarouter" 99 custom_package = "android.support.v7.mediarouter"
83 } 100 }
84 101
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 ":android_support_v17_leanback_resources", 151 ":android_support_v17_leanback_resources",
135 ":android_support_v7_recyclerview_java", 152 ":android_support_v7_recyclerview_java",
136 ] 153 ]
137 jar_path = "$android_sdk_root/extras/android/support/v17/leanback/libs/android -support-v17-leanback.jar" 154 jar_path = "$android_sdk_root/extras/android/support/v17/leanback/libs/android -support-v17-leanback.jar"
138 } 155 }
139 156
140 # TODO(jbudorick): Remove this once net_java_test_support no longer needs it. 157 # TODO(jbudorick): Remove this once net_java_test_support no longer needs it.
141 android_java_prebuilt("legacy_http_javalib") { 158 android_java_prebuilt("legacy_http_javalib") {
142 jar_path = "$android_sdk/optional/org.apache.http.legacy.jar" 159 jar_path = "$android_sdk/optional/org.apache.http.legacy.jar"
143 } 160 }
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