| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 java_cpp_enum("url_request_error_java") { | 51 java_cpp_enum("url_request_error_java") { |
| 52 sources = [ | 52 sources = [ |
| 53 "url_request_error.h", | 53 "url_request_error.h", |
| 54 ] | 54 ] |
| 55 } | 55 } |
| 56 | 56 |
| 57 # This target is a jar file containing classes that Cronet's javadocs | 57 # This target is a jar file containing classes that Cronet's javadocs |
| 58 # may reference but are not included in the javadocs themselves. | 58 # may reference but are not included in the javadocs themselves. |
| 59 android_library("cronet_javadoc_classpath") { | 59 android_library("cronet_javadoc_classpath") { |
| 60 deps = [ |
| 61 "//third_party/android_tools:android_support_annotations_java", |
| 62 ] |
| 60 srcjar_deps = [ ":url_request_error_java" ] | 63 srcjar_deps = [ ":url_request_error_java" ] |
| 61 } | 64 } |
| 62 | 65 |
| 63 java_cpp_enum("http_cache_type_java") { | 66 java_cpp_enum("http_cache_type_java") { |
| 64 sources = [ | 67 sources = [ |
| 65 "//components/cronet/url_request_context_config.h", | 68 "//components/cronet/url_request_context_config.h", |
| 66 ] | 69 ] |
| 67 } | 70 } |
| 68 | 71 |
| 69 java_cpp_template("load_states_list") { | 72 java_cpp_template("load_states_list") { |
| (...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 ":cronet_package_copy_native_lib", | 920 ":cronet_package_copy_native_lib", |
| 918 ":cronet_package_copy_native_lib_unstripped", | 921 ":cronet_package_copy_native_lib_unstripped", |
| 919 ":generate_javadoc", | 922 ":generate_javadoc", |
| 920 ":generate_licenses", | 923 ":generate_licenses", |
| 921 ":jar_cronet_api_source", | 924 ":jar_cronet_api_source", |
| 922 ":jar_cronet_other_source", | 925 ":jar_cronet_other_source", |
| 923 ":jar_cronet_sample_source", | 926 ":jar_cronet_sample_source", |
| 924 ":repackage_extracted_jars", | 927 ":repackage_extracted_jars", |
| 925 ] | 928 ] |
| 926 } | 929 } |
| OLD | NEW |