| 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 ] | 12 ] |
| 13 srcjar_deps = [ | 13 srcjar_deps = [ |
| 14 ":net_errors_java", | 14 ":net_errors_java", |
| 15 ":net_android_java_enums_srcjar", | 15 ":net_android_java_enums_srcjar", |
| 16 ":remote_android_keystore_aidl", | |
| 17 ] | 16 ] |
| 18 } | 17 } |
| 19 | 18 |
| 20 android_aidl("remote_android_keystore_aidl") { | |
| 21 interface_file = | |
| 22 "java/src/org/chromium/net/IRemoteAndroidKeyStoreInterface.aidl" | |
| 23 sources = [ | |
| 24 "java/src/org/chromium/net/IRemoteAndroidKeyStore.aidl", | |
| 25 "java/src/org/chromium/net/IRemoteAndroidKeyStoreCallbacks.aidl", | |
| 26 ] | |
| 27 } | |
| 28 | |
| 29 android_library("net_java_test_support") { | 19 android_library("net_java_test_support") { |
| 30 DEPRECATED_java_in_dir = "../test/android/javatests/src" | 20 DEPRECATED_java_in_dir = "../test/android/javatests/src" |
| 31 deps = [ | 21 deps = [ |
| 32 ":net_java", | 22 ":net_java", |
| 33 "//base:base_java", | 23 "//base:base_java", |
| 34 "//third_party/android_tools:legacy_http_javalib", | 24 "//third_party/android_tools:legacy_http_javalib", |
| 35 ] | 25 ] |
| 36 srcjar_deps = [ ":net_java_test_support_enums_srcjar" ] | 26 srcjar_deps = [ ":net_java_test_support_enums_srcjar" ] |
| 37 } | 27 } |
| 38 | 28 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 java_files = | 72 java_files = |
| 83 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ] | 73 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ] |
| 84 deps = [ | 74 deps = [ |
| 85 ":net_java", | 75 ":net_java", |
| 86 "//base:base_java", | 76 "//base:base_java", |
| 87 "//base:base_java_test_support", | 77 "//base:base_java_test_support", |
| 88 "//base:base_junit_test_support", | 78 "//base:base_junit_test_support", |
| 89 "//third_party/junit:hamcrest", | 79 "//third_party/junit:hamcrest", |
| 90 ] | 80 ] |
| 91 } | 81 } |
| OLD | NEW |