| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 # deps: Extra dependencies. | 110 # deps: Extra dependencies. |
| 111 template("cronet_static_tmpl") { | 111 template("cronet_static_tmpl") { |
| 112 source_set(target_name) { | 112 source_set(target_name) { |
| 113 defines = [] | 113 defines = [] |
| 114 | 114 |
| 115 deps = [ | 115 deps = [ |
| 116 ":chromium_url_request_java", | 116 ":chromium_url_request_java", |
| 117 ":cronet_jni_headers", | 117 ":cronet_jni_headers", |
| 118 ":cronet_version_header", | 118 ":cronet_version_header", |
| 119 "//base", | 119 "//base", |
| 120 "//base:i18n", | |
| 121 "//base/third_party/dynamic_annotations", | 120 "//base/third_party/dynamic_annotations", |
| 122 "//components/metrics", | 121 "//components/metrics", |
| 123 "//components/prefs", | 122 "//components/prefs", |
| 124 "//url:url_features", | 123 "//url:url_features", |
| 125 ] | 124 ] |
| 126 sources = [ | 125 sources = [ |
| 127 "//components/cronet/android/chromium_url_request.cc", | 126 "//components/cronet/android/chromium_url_request.cc", |
| 128 "//components/cronet/android/chromium_url_request.h", | 127 "//components/cronet/android/chromium_url_request.h", |
| 129 "//components/cronet/android/chromium_url_request_context.cc", | 128 "//components/cronet/android/chromium_url_request_context.cc", |
| 130 "//components/cronet/android/chromium_url_request_context.h", | 129 "//components/cronet/android/chromium_url_request_context.h", |
| (...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 871 ":cronet_package_copy_native_lib", | 870 ":cronet_package_copy_native_lib", |
| 872 ":cronet_package_copy_native_lib_unstripped", | 871 ":cronet_package_copy_native_lib_unstripped", |
| 873 ":generate_javadoc", | 872 ":generate_javadoc", |
| 874 ":generate_licenses", | 873 ":generate_licenses", |
| 875 ":jar_cronet_api_source", | 874 ":jar_cronet_api_source", |
| 876 ":jar_cronet_other_source", | 875 ":jar_cronet_other_source", |
| 877 ":jar_cronet_sample_source", | 876 ":jar_cronet_sample_source", |
| 878 ":repackage_extracted_jars", | 877 ":repackage_extracted_jars", |
| 879 ] | 878 ] |
| 880 } | 879 } |
| OLD | NEW |