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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 "//components/cronet/android/url_request_adapter.cc", | 146 "//components/cronet/android/url_request_adapter.cc", |
147 "//components/cronet/android/url_request_adapter.h", | 147 "//components/cronet/android/url_request_adapter.h", |
148 "//components/cronet/android/url_request_context_adapter.cc", | 148 "//components/cronet/android/url_request_context_adapter.cc", |
149 "//components/cronet/android/url_request_context_adapter.h", | 149 "//components/cronet/android/url_request_context_adapter.h", |
150 "//components/cronet/android/url_request_error.cc", | 150 "//components/cronet/android/url_request_error.cc", |
151 "//components/cronet/android/url_request_error.h", | 151 "//components/cronet/android/url_request_error.h", |
152 "//components/cronet/android/wrapped_channel_upload_element_reader.cc", | 152 "//components/cronet/android/wrapped_channel_upload_element_reader.cc", |
153 "//components/cronet/android/wrapped_channel_upload_element_reader.h", | 153 "//components/cronet/android/wrapped_channel_upload_element_reader.h", |
154 "//components/cronet/histogram_manager.cc", | 154 "//components/cronet/histogram_manager.cc", |
155 "//components/cronet/histogram_manager.h", | 155 "//components/cronet/histogram_manager.h", |
| 156 "//components/cronet/stale_host_resolver.cc", |
| 157 "//components/cronet/stale_host_resolver.h", |
156 "//components/cronet/url_request_context_config.cc", | 158 "//components/cronet/url_request_context_config.cc", |
157 "//components/cronet/url_request_context_config.h", | 159 "//components/cronet/url_request_context_config.h", |
158 ] | 160 ] |
159 | 161 |
160 include_dirs = [ _cronet_version_header_include_dir ] | 162 include_dirs = [ _cronet_version_header_include_dir ] |
161 | 163 |
162 cflags = [ | 164 cflags = [ |
163 "-DLOGGING=1", | 165 "-DLOGGING=1", |
164 "-Wno-sign-promo", | 166 "-Wno-sign-promo", |
165 ] | 167 ] |
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
868 ":cronet_package_copy_native_lib", | 870 ":cronet_package_copy_native_lib", |
869 ":cronet_package_copy_native_lib_unstripped", | 871 ":cronet_package_copy_native_lib_unstripped", |
870 ":generate_javadoc", | 872 ":generate_javadoc", |
871 ":generate_licenses", | 873 ":generate_licenses", |
872 ":jar_cronet_api_source", | 874 ":jar_cronet_api_source", |
873 ":jar_cronet_other_source", | 875 ":jar_cronet_other_source", |
874 ":jar_cronet_sample_source", | 876 ":jar_cronet_sample_source", |
875 ":repackage_extracted_jars", | 877 ":repackage_extracted_jars", |
876 ] | 878 ] |
877 } | 879 } |
OLD | NEW |