| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 ] | 56 ] |
| 57 | 57 |
| 58 if (!use_platform_icu_alternatives) { | 58 if (!use_platform_icu_alternatives) { |
| 59 deps += [ "//base:i18n" ] | 59 deps += [ "//base:i18n" ] |
| 60 } | 60 } |
| 61 } | 61 } |
| 62 | 62 |
| 63 # Tweak |info_plist| with current version and revision. | 63 # Tweak |info_plist| with current version and revision. |
| 64 tweak_info_plist("tweak_cronet_plist") { | 64 tweak_info_plist("tweak_cronet_plist") { |
| 65 info_plist = "Info.plist" | 65 info_plist = "Info.plist" |
| 66 args = [] | 66 args = [ "--platform=ios" ] |
| 67 } | 67 } |
| 68 | 68 |
| 69 ios_framework_bundle("cronet_framework") { | 69 ios_framework_bundle("cronet_framework") { |
| 70 output_name = "Cronet" | 70 output_name = "Cronet" |
| 71 info_plist_target = ":tweak_cronet_plist" | 71 info_plist_target = ":tweak_cronet_plist" |
| 72 | 72 |
| 73 deps = [ | 73 deps = [ |
| 74 ":cronet_sources", | 74 ":cronet_sources", |
| 75 "//base", | 75 "//base", |
| 76 "//net:net", | 76 "//net:net", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 ] | 183 ] |
| 184 } | 184 } |
| 185 | 185 |
| 186 group("cronet_package") { | 186 group("cronet_package") { |
| 187 deps = [ | 187 deps = [ |
| 188 ":cronet_package_copy", | 188 ":cronet_package_copy", |
| 189 ":generate_license", | 189 ":generate_license", |
| 190 ] | 190 ] |
| 191 } | 191 } |
| 192 } | 192 } |
| OLD | NEW |