| 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/config/mac/symbols.gni") | 7 import("//build/config/mac/symbols.gni") |
| 8 import("//build/mac/tweak_info_plist.gni") | 8 import("//build/mac/tweak_info_plist.gni") |
| 9 import("//build/util/version.gni") | 9 import("//build/util/version.gni") |
| 10 import("//chrome/version.gni") | 10 import("//chrome/version.gni") |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "//components/metrics:metrics", | 33 "//components/metrics:metrics", |
| 34 "//components/metrics/proto:proto", | 34 "//components/metrics/proto:proto", |
| 35 "//components/prefs:prefs", | 35 "//components/prefs:prefs", |
| 36 "//net", | 36 "//net", |
| 37 "//url", | 37 "//url", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 sources = [ | 40 sources = [ |
| 41 "../histogram_manager.cc", | 41 "../histogram_manager.cc", |
| 42 "../histogram_manager.h", | 42 "../histogram_manager.h", |
| 43 "../stale_host_resolver.cc", |
| 44 "../stale_host_resolver.h", |
| 43 "../url_request_context_config.cc", | 45 "../url_request_context_config.cc", |
| 44 "../url_request_context_config.h", | 46 "../url_request_context_config.h", |
| 45 "cronet_bidirectional_stream.cc", | 47 "cronet_bidirectional_stream.cc", |
| 46 "cronet_bidirectional_stream.h", | 48 "cronet_bidirectional_stream.h", |
| 47 "cronet_c_for_grpc.cc", | 49 "cronet_c_for_grpc.cc", |
| 48 "cronet_c_for_grpc.h", | 50 "cronet_c_for_grpc.h", |
| 49 "cronet_environment.cc", | 51 "cronet_environment.cc", |
| 50 "cronet_environment.h", | 52 "cronet_environment.h", |
| 51 ] | 53 ] |
| 52 | 54 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 "//net:simple_quic_tools", | 122 "//net:simple_quic_tools", |
| 121 "//net:test_support", | 123 "//net:test_support", |
| 122 "//third_party/icu", | 124 "//third_party/icu", |
| 123 ] | 125 ] |
| 124 } | 126 } |
| 125 | 127 |
| 126 test("cronet_unittests") { | 128 test("cronet_unittests") { |
| 127 sources = [ | 129 sources = [ |
| 128 "//components/cronet/histogram_manager_unittest.cc", | 130 "//components/cronet/histogram_manager_unittest.cc", |
| 129 "//components/cronet/run_all_unittests.cc", | 131 "//components/cronet/run_all_unittests.cc", |
| 132 "//components/cronet/stale_host_resolver_unittest.cc", |
| 130 "//components/cronet/url_request_context_config_unittest.cc", | 133 "//components/cronet/url_request_context_config_unittest.cc", |
| 131 ] | 134 ] |
| 132 | 135 |
| 133 deps = [ | 136 deps = [ |
| 134 ":cronet_sources", | 137 ":cronet_sources", |
| 135 "//base", | 138 "//base", |
| 136 "//base/test:test_support", | 139 "//base/test:test_support", |
| 137 "//components/metrics", | 140 "//components/metrics", |
| 138 "//net", | 141 "//net", |
| 139 "//testing/gtest", | 142 "//testing/gtest", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 ] | 175 ] |
| 173 } | 176 } |
| 174 | 177 |
| 175 group("cronet_package") { | 178 group("cronet_package") { |
| 176 deps = [ | 179 deps = [ |
| 177 ":cronet_package_copy", | 180 ":cronet_package_copy", |
| 178 ":generate_license", | 181 ":generate_license", |
| 179 ] | 182 ] |
| 180 } | 183 } |
| 181 } | 184 } |
| OLD | NEW |