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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 # Tweak |info_plist| with current version and revision. | 58 # Tweak |info_plist| with current version and revision. |
59 tweak_info_plist("tweak_cronet_plist") { | 59 tweak_info_plist("tweak_cronet_plist") { |
60 info_plist = "Info.plist" | 60 info_plist = "Info.plist" |
61 args = [] | 61 args = [] |
62 } | 62 } |
63 | 63 |
64 ios_framework_bundle("cronet_framework") { | 64 ios_framework_bundle("cronet_framework") { |
65 output_name = "Cronet" | 65 output_name = "Cronet" |
66 info_plist_target = ":tweak_cronet_plist" | 66 info_plist_target = ":tweak_cronet_plist" |
| 67 code_signing_enabled = false |
67 | 68 |
68 deps = [ | 69 deps = [ |
69 ":cronet_sources", | 70 ":cronet_sources", |
70 "//base", | 71 "//base", |
71 "//net:net", | 72 "//net:net", |
72 ] | 73 ] |
73 | 74 |
74 libs = [ "UIKit.Framework" ] | 75 libs = [ "UIKit.Framework" ] |
75 | 76 |
76 public_headers = [ | 77 public_headers = [ |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 ] | 172 ] |
172 } | 173 } |
173 | 174 |
174 group("cronet_package") { | 175 group("cronet_package") { |
175 deps = [ | 176 deps = [ |
176 ":cronet_package_copy", | 177 ":cronet_package_copy", |
177 ":generate_license", | 178 ":generate_license", |
178 ] | 179 ] |
179 } | 180 } |
180 } | 181 } |
OLD | NEW |