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 22 matching lines...) Expand all Loading... |
33 } | 33 } |
34 | 34 |
35 android_java_prebuilt("android_gcm_java") { | 35 android_java_prebuilt("android_gcm_java") { |
36 jar_path = "$android_sdk_root/extras/google/gcm/gcm-client/dist/gcm.jar" | 36 jar_path = "$android_sdk_root/extras/google/gcm/gcm-client/dist/gcm.jar" |
37 } | 37 } |
38 | 38 |
39 android_java_prebuilt("emma_device") { | 39 android_java_prebuilt("emma_device") { |
40 jar_path = "$android_sdk_root/tools/lib/emma_device.jar" | 40 jar_path = "$android_sdk_root/tools/lib/emma_device.jar" |
41 } | 41 } |
42 | 42 |
43 android_java_prebuilt("uiautomator_java") { | |
44 jar_path = "$android_sdk/uiautomator.jar" | |
45 } | |
46 | |
47 android_java_prebuilt("android_support_annotations_javalib") { | 43 android_java_prebuilt("android_support_annotations_javalib") { |
48 jar_path = "$android_sdk_root/extras/android/support/annotations/android-suppo
rt-annotations.jar" | 44 jar_path = "$android_sdk_root/extras/android/support/annotations/android-suppo
rt-annotations.jar" |
49 } | 45 } |
50 | 46 |
51 java_prebuilt("android_support_multidex_java") { | 47 java_prebuilt("android_support_multidex_java") { |
52 supports_android = true | 48 supports_android = true |
53 jar_path = "$android_sdk_root/extras/android/support/multidex/library/libs/and
roid-support-multidex.jar" | 49 jar_path = "$android_sdk_root/extras/android/support/multidex/library/libs/and
roid-support-multidex.jar" |
54 } | 50 } |
55 | 51 |
56 android_java_prebuilt("android_support_v13_java") { | 52 android_java_prebuilt("android_support_v13_java") { |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 ":android_support_v17_leanback_resources", | 130 ":android_support_v17_leanback_resources", |
135 ":android_support_v7_recyclerview_java", | 131 ":android_support_v7_recyclerview_java", |
136 ] | 132 ] |
137 jar_path = "$android_sdk_root/extras/android/support/v17/leanback/libs/android
-support-v17-leanback.jar" | 133 jar_path = "$android_sdk_root/extras/android/support/v17/leanback/libs/android
-support-v17-leanback.jar" |
138 } | 134 } |
139 | 135 |
140 # TODO(jbudorick): Remove this once net_java_test_support no longer needs it. | 136 # TODO(jbudorick): Remove this once net_java_test_support no longer needs it. |
141 android_java_prebuilt("legacy_http_javalib") { | 137 android_java_prebuilt("legacy_http_javalib") { |
142 jar_path = "$android_sdk/optional/org.apache.http.legacy.jar" | 138 jar_path = "$android_sdk/optional/org.apache.http.legacy.jar" |
143 } | 139 } |
OLD | NEW |