| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 ] | 60 ] |
| 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. |
| 68 tweak_info_plist("tweak_cronet_plist") { | 68 tweak_info_plist("tweak_cronet_plist") { |
| 69 info_plist = "Info.plist" | 69 info_plist = "Info.plist" |
| 70 args = [ "--platform=ios" ] | |
| 71 } | 70 } |
| 72 | 71 |
| 73 bundle_data("cronet_framework_resources") { | 72 bundle_data("cronet_framework_resources") { |
| 74 # This bundle contains "Accept-Languages" header values for known locales. | 73 # This bundle contains "Accept-Languages" header values for known locales. |
| 75 # TODO(mef): These strings should be auto-generated from chrome's .xtb | 74 # TODO(mef): These strings should be auto-generated from chrome's .xtb |
| 76 # files, not hardcoded. | 75 # files, not hardcoded. |
| 77 sources = [ | 76 sources = [ |
| 78 "Resources/Localization/am.lproj", | 77 "Resources/Localization/am.lproj", |
| 79 "Resources/Localization/ar.lproj", | 78 "Resources/Localization/ar.lproj", |
| 80 "Resources/Localization/bg.lproj", | 79 "Resources/Localization/bg.lproj", |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 ] | 220 ] |
| 222 } | 221 } |
| 223 | 222 |
| 224 group("cronet_package") { | 223 group("cronet_package") { |
| 225 deps = [ | 224 deps = [ |
| 226 ":cronet_package_copy", | 225 ":cronet_package_copy", |
| 227 ":generate_license", | 226 ":generate_license", |
| 228 ] | 227 ] |
| 229 } | 228 } |
| 230 } | 229 } |
| OLD | NEW |