| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "url_request_error.h", | 59 "url_request_error.h", |
| 60 ] | 60 ] |
| 61 } | 61 } |
| 62 | 62 |
| 63 # This target is a jar file containing classes that Cronet's javadocs | 63 # This target is a jar file containing classes that Cronet's javadocs |
| 64 # may reference but are not included in the javadocs themselves. | 64 # may reference but are not included in the javadocs themselves. |
| 65 android_library("cronet_javadoc_classpath") { | 65 android_library("cronet_javadoc_classpath") { |
| 66 deps = [ | 66 deps = [ |
| 67 "//third_party/android_tools:android_support_annotations_java", | 67 "//third_party/android_tools:android_support_annotations_java", |
| 68 ] | 68 ] |
| 69 srcjar_deps = [ | 69 srcjar_deps = [ ":url_request_error_java" ] |
| 70 ":effective_connection_type_java", | |
| 71 ":url_request_error_java", | |
| 72 ] | |
| 73 } | 70 } |
| 74 | 71 |
| 75 java_cpp_enum("http_cache_type_java") { | 72 java_cpp_enum("http_cache_type_java") { |
| 76 sources = [ | 73 sources = [ |
| 77 "//components/cronet/url_request_context_config.h", | 74 "//components/cronet/url_request_context_config.h", |
| 78 ] | 75 ] |
| 79 } | 76 } |
| 80 | 77 |
| 81 java_cpp_template("load_states_list") { | 78 java_cpp_template("load_states_list") { |
| 82 sources = [ | 79 sources = [ |
| (...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 971 ":jar_cronet_api_source", | 968 ":jar_cronet_api_source", |
| 972 ":jar_cronet_other_source", | 969 ":jar_cronet_other_source", |
| 973 ":jar_cronet_sample_source", | 970 ":jar_cronet_sample_source", |
| 974 ":repackage_extracted_jars", | 971 ":repackage_extracted_jars", |
| 975 ] | 972 ] |
| 976 if (current_cpu == "arm" && arm_version == 7) { | 973 if (current_cpu == "arm" && arm_version == 7) { |
| 977 deps += [ ":enforce_no_neon" ] | 974 deps += [ ":enforce_no_neon" ] |
| 978 } | 975 } |
| 979 } | 976 } |
| 980 } | 977 } |
| OLD | NEW |