| 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 = [ "$android_ndk_root/sources/android/cpufeatures" ] | 8 include_dirs = [ "$android_ndk_root/sources/android/cpufeatures" ] |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 } | 58 } |
| 59 | 59 |
| 60 android_java_prebuilt("android_support_annotations_java") { | 60 android_java_prebuilt("android_support_annotations_java") { |
| 61 lib_name = "support-annotations" | 61 lib_name = "support-annotations" |
| 62 jar_path = "$lib_path/$lib_name/$lib_version/$lib_name-$lib_version.jar" | 62 jar_path = "$lib_path/$lib_name/$lib_version/$lib_name-$lib_version.jar" |
| 63 } | 63 } |
| 64 | 64 |
| 65 android_aar_prebuilt("android_support_v4_java") { | 65 android_aar_prebuilt("android_support_v4_java") { |
| 66 lib_name = "support-v4" | 66 lib_name = "support-v4" |
| 67 aar_path = "$lib_path/$lib_name/$lib_version/$lib_name-$lib_version.aar" | 67 aar_path = "$lib_path/$lib_name/$lib_version/$lib_name-$lib_version.aar" |
| 68 ignore_aidl = true # We don't appear to need these currently. |
| 68 } | 69 } |
| 69 | 70 |
| 70 android_aar_prebuilt("android_support_v13_java") { | 71 android_aar_prebuilt("android_support_v13_java") { |
| 71 deps = [ | 72 deps = [ |
| 72 ":android_support_annotations_java", | 73 ":android_support_annotations_java", |
| 73 ":android_support_v4_java", | 74 ":android_support_v4_java", |
| 74 ] | 75 ] |
| 75 lib_name = "support-v13" | 76 lib_name = "support-v13" |
| 76 aar_path = "$lib_path/$lib_name/$lib_version/$lib_name-$lib_version.aar" | 77 aar_path = "$lib_path/$lib_name/$lib_version/$lib_name-$lib_version.aar" |
| 77 } | 78 } |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 ] | 138 ] |
| 138 lib_name = "leanback-v17" | 139 lib_name = "leanback-v17" |
| 139 aar_path = "$lib_path/$lib_name/$lib_version/$lib_name-$lib_version.aar" | 140 aar_path = "$lib_path/$lib_name/$lib_version/$lib_name-$lib_version.aar" |
| 140 } | 141 } |
| 141 | 142 |
| 142 # TODO(jbudorick): Remove this once net_java_test_support no longer needs it. | 143 # TODO(jbudorick): Remove this once net_java_test_support no longer needs it. |
| 143 android_java_prebuilt("legacy_http_javalib") { | 144 android_java_prebuilt("legacy_http_javalib") { |
| 144 testonly = true | 145 testonly = true |
| 145 jar_path = "$android_sdk/optional/org.apache.http.legacy.jar" | 146 jar_path = "$android_sdk/optional/org.apache.http.legacy.jar" |
| 146 } | 147 } |
| OLD | NEW |