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/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 | 7 |
8 android_library("net_java") { | 8 android_library("net_java") { |
9 DEPRECATED_java_in_dir = "java/src" | 9 DEPRECATED_java_in_dir = "java/src" |
10 deps = [ | 10 deps = [ |
11 "//base:base_java", | 11 "//base:base_java", |
| 12 "//third_party/android_tools:android_support_annotations_javalib", |
12 ] | 13 ] |
13 srcjar_deps = [ | 14 srcjar_deps = [ |
14 ":net_errors_java", | 15 ":net_errors_java", |
15 ":net_android_java_enums_srcjar", | 16 ":net_android_java_enums_srcjar", |
16 ":remote_android_keystore_aidl", | 17 ":remote_android_keystore_aidl", |
17 ] | 18 ] |
18 } | 19 } |
19 | 20 |
20 android_aidl("remote_android_keystore_aidl") { | 21 android_aidl("remote_android_keystore_aidl") { |
21 interface_file = | 22 interface_file = |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 java_files = | 83 java_files = |
83 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ] | 84 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ] |
84 deps = [ | 85 deps = [ |
85 ":net_java", | 86 ":net_java", |
86 "//base:base_java", | 87 "//base:base_java", |
87 "//base:base_java_test_support", | 88 "//base:base_java_test_support", |
88 "//base:base_junit_test_support", | 89 "//base:base_junit_test_support", |
89 "//third_party/junit:hamcrest", | 90 "//third_party/junit:hamcrest", |
90 ] | 91 ] |
91 } | 92 } |
OLD | NEW |