Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(747)

Side by Side Diff: components/cronet/ios/BUILD.gn

Issue 2389113003: [Cronet] Make CFBundleShortVersionString conform x.y.z format on iOS. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698