| 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/process_version.gni") | 9 import("//build/util/process_version.gni") |
| 10 import("//build/util/version.gni") | 10 import("//build/util/version.gni") |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 sources = [ | 47 sources = [ |
| 48 "../histogram_manager.cc", | 48 "../histogram_manager.cc", |
| 49 "../histogram_manager.h", | 49 "../histogram_manager.h", |
| 50 "../stale_host_resolver.cc", | 50 "../stale_host_resolver.cc", |
| 51 "../stale_host_resolver.h", | 51 "../stale_host_resolver.h", |
| 52 "../url_request_context_config.cc", | 52 "../url_request_context_config.cc", |
| 53 "../url_request_context_config.h", | 53 "../url_request_context_config.h", |
| 54 "Cronet.h", | 54 "Cronet.h", |
| 55 "Cronet.mm", | 55 "Cronet.mm", |
| 56 "cronet_environment.cc", | |
| 57 "cronet_environment.h", | 56 "cronet_environment.h", |
| 57 "cronet_environment.mm", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 include_dirs = [ "//components/grpc_support/include" ] | 60 include_dirs = [ "//components/grpc_support/include" ] |
| 61 | 61 |
| 62 if (!use_platform_icu_alternatives) { | 62 if (!use_platform_icu_alternatives) { |
| 63 deps += [ "//base:i18n" ] | 63 deps += [ "//base:i18n" ] |
| 64 } | 64 } |
| 65 } | 65 } |
| 66 | 66 |
| 67 # Tweak |info_plist| with current version and revision. | 67 # Tweak |info_plist| with current version and revision. |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 ] | 223 ] |
| 224 } | 224 } |
| 225 | 225 |
| 226 group("cronet_package") { | 226 group("cronet_package") { |
| 227 deps = [ | 227 deps = [ |
| 228 ":cronet_package_copy", | 228 ":cronet_package_copy", |
| 229 ":generate_license", | 229 ":generate_license", |
| 230 ] | 230 ] |
| 231 } | 231 } |
| 232 } | 232 } |
| OLD | NEW |