| 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/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
| 7 import("//build/util/version.gni") | 7 import("//build/util/version.gni") |
| 8 import("//chrome/version.gni") | 8 import("//chrome/version.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//url/features.gni") | 10 import("//url/features.gni") |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "//components/metrics:metrics", | 31 "//components/metrics:metrics", |
| 32 "//components/metrics/proto:proto", | 32 "//components/metrics/proto:proto", |
| 33 "//components/prefs:prefs", | 33 "//components/prefs:prefs", |
| 34 "//net", | 34 "//net", |
| 35 "//url", | 35 "//url", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 sources = [ | 38 sources = [ |
| 39 "../histogram_manager.cc", | 39 "../histogram_manager.cc", |
| 40 "../histogram_manager.h", | 40 "../histogram_manager.h", |
| 41 "../stale_host_resolver.cc", |
| 42 "../stale_host_resolver.h", |
| 41 "../url_request_context_config.cc", | 43 "../url_request_context_config.cc", |
| 42 "../url_request_context_config.h", | 44 "../url_request_context_config.h", |
| 43 "cronet_bidirectional_stream.cc", | 45 "cronet_bidirectional_stream.cc", |
| 44 "cronet_bidirectional_stream.h", | 46 "cronet_bidirectional_stream.h", |
| 45 "cronet_c_for_grpc.cc", | 47 "cronet_c_for_grpc.cc", |
| 46 "cronet_c_for_grpc.h", | 48 "cronet_c_for_grpc.h", |
| 47 "cronet_environment.cc", | 49 "cronet_environment.cc", |
| 48 "cronet_environment.h", | 50 "cronet_environment.h", |
| 49 ] | 51 ] |
| 50 | 52 |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 ":cronet_framework", | 163 ":cronet_framework", |
| 162 ] | 164 ] |
| 163 } | 165 } |
| 164 | 166 |
| 165 group("cronet_package") { | 167 group("cronet_package") { |
| 166 deps = [ | 168 deps = [ |
| 167 ":cronet_package_copy", | 169 ":cronet_package_copy", |
| 168 ":generate_license", | 170 ":generate_license", |
| 169 ] | 171 ] |
| 170 } | 172 } |
| OLD | NEW |