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 = [ "ndk/sources/android/cpufeatures" ] | 8 include_dirs = [ "ndk/sources/android/cpufeatures" ] |
9 } | 9 } |
10 | 10 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 custom_package = "android.support.design" | 49 custom_package = "android.support.design" |
50 } | 50 } |
51 | 51 |
52 android_java_prebuilt("android_support_design_java") { | 52 android_java_prebuilt("android_support_design_java") { |
53 deps = [ | 53 deps = [ |
54 ":android_support_design_resources", | 54 ":android_support_design_resources", |
55 ] | 55 ] |
56 jar_path = "$android_sdk_root/extras/android/support/design/libs/android-suppo
rt-design.jar" | 56 jar_path = "$android_sdk_root/extras/android/support/design/libs/android-suppo
rt-design.jar" |
57 } | 57 } |
58 | 58 |
59 android_java_prebuilt("android_support_annotations_javalib") { | |
60 jar_path = "$android_sdk_root/extras/android/support/annotations/android-suppo
rt-annotations.jar" | |
61 } | |
62 | |
63 java_prebuilt("android_support_multidex_java") { | 59 java_prebuilt("android_support_multidex_java") { |
64 supports_android = true | 60 supports_android = true |
65 jar_path = "$android_sdk_root/extras/android/support/multidex/library/libs/and
roid-support-multidex.jar" | 61 jar_path = "$android_sdk_root/extras/android/support/multidex/library/libs/and
roid-support-multidex.jar" |
66 } | 62 } |
67 | 63 |
68 android_java_prebuilt("android_support_v13_java") { | 64 android_java_prebuilt("android_support_v13_java") { |
69 jar_path = | 65 jar_path = |
70 "$android_sdk_root/extras/android/support/v13/android-support-v13.jar" | 66 "$android_sdk_root/extras/android/support/v13/android-support-v13.jar" |
71 } | 67 } |
72 | 68 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 ":android_support_v7_recyclerview_java", | 143 ":android_support_v7_recyclerview_java", |
148 ] | 144 ] |
149 jar_path = "$android_sdk_root/extras/android/support/v17/leanback/libs/android
-support-v17-leanback.jar" | 145 jar_path = "$android_sdk_root/extras/android/support/v17/leanback/libs/android
-support-v17-leanback.jar" |
150 } | 146 } |
151 | 147 |
152 # TODO(jbudorick): Remove this once net_java_test_support no longer needs it. | 148 # TODO(jbudorick): Remove this once net_java_test_support no longer needs it. |
153 android_java_prebuilt("legacy_http_javalib") { | 149 android_java_prebuilt("legacy_http_javalib") { |
154 testonly = true | 150 testonly = true |
155 jar_path = "$android_sdk/optional/org.apache.http.legacy.jar" | 151 jar_path = "$android_sdk/optional/org.apache.http.legacy.jar" |
156 } | 152 } |
OLD | NEW |