| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "//net:simple_quic_tools", | 121 "//net:simple_quic_tools", |
| 120 "//net:test_support", | 122 "//net:test_support", |
| 121 "//third_party/icu", | 123 "//third_party/icu", |
| 122 ] | 124 ] |
| 123 } | 125 } |
| 124 | 126 |
| 125 test("cronet_unittests") { | 127 test("cronet_unittests") { |
| 126 sources = [ | 128 sources = [ |
| 127 "//components/cronet/histogram_manager_unittest.cc", | 129 "//components/cronet/histogram_manager_unittest.cc", |
| 128 "//components/cronet/run_all_unittests.cc", | 130 "//components/cronet/run_all_unittests.cc", |
| 131 "//components/cronet/stale_host_resolver_unittest.cc", |
| 129 "//components/cronet/url_request_context_config_unittest.cc", | 132 "//components/cronet/url_request_context_config_unittest.cc", |
| 130 ] | 133 ] |
| 131 | 134 |
| 132 deps = [ | 135 deps = [ |
| 133 ":cronet_sources", | 136 ":cronet_sources", |
| 134 "//base", | 137 "//base", |
| 135 "//base/test:test_support", | 138 "//base/test:test_support", |
| 136 "//components/metrics", | 139 "//components/metrics", |
| 137 "//net", | 140 "//net", |
| 138 "//testing/gtest", | 141 "//testing/gtest", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 ] | 180 ] |
| 178 } | 181 } |
| 179 | 182 |
| 180 group("cronet_package") { | 183 group("cronet_package") { |
| 181 deps = [ | 184 deps = [ |
| 182 ":cronet_package_copy", | 185 ":cronet_package_copy", |
| 183 ":generate_license", | 186 ":generate_license", |
| 184 ] | 187 ] |
| 185 } | 188 } |
| 186 } | 189 } |
| OLD | NEW |