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/util/version.gni") | 6 import("//build/util/version.gni") |
7 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 import("//url/features.gni") | 9 import("//url/features.gni") |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 "//components/metrics:metrics", | 30 "//components/metrics:metrics", |
31 "//components/metrics/proto:proto", | 31 "//components/metrics/proto:proto", |
32 "//components/prefs:prefs", | 32 "//components/prefs:prefs", |
33 "//net", | 33 "//net", |
34 "//url", | 34 "//url", |
35 ] | 35 ] |
36 | 36 |
37 sources = [ | 37 sources = [ |
38 "../histogram_manager.cc", | 38 "../histogram_manager.cc", |
39 "../histogram_manager.h", | 39 "../histogram_manager.h", |
| 40 "../stale_host_resolver.cc", |
| 41 "../stale_host_resolver.h", |
40 "../url_request_context_config.cc", | 42 "../url_request_context_config.cc", |
41 "../url_request_context_config.h", | 43 "../url_request_context_config.h", |
42 "Cronet.h", | 44 "Cronet.h", |
43 "Cronet.mm", | 45 "Cronet.mm", |
44 "cronet_bidirectional_stream.cc", | 46 "cronet_bidirectional_stream.cc", |
45 "cronet_bidirectional_stream.h", | 47 "cronet_bidirectional_stream.h", |
46 "cronet_c_for_grpc.cc", | 48 "cronet_c_for_grpc.cc", |
47 "cronet_c_for_grpc.h", | 49 "cronet_c_for_grpc.h", |
48 "cronet_environment.cc", | 50 "cronet_environment.cc", |
49 "cronet_environment.h", | 51 "cronet_environment.h", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 ":cronet_shared", | 149 ":cronet_shared", |
148 ] | 150 ] |
149 } | 151 } |
150 | 152 |
151 group("cronet_package") { | 153 group("cronet_package") { |
152 deps = [ | 154 deps = [ |
153 ":cronet_package_copy", | 155 ":cronet_package_copy", |
154 ":generate_license", | 156 ":generate_license", |
155 ] | 157 ] |
156 } | 158 } |
OLD | NEW |