| 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 | |
| 68 | 67 |
| 69 deps = [ | 68 deps = [ |
| 70 ":cronet_sources", | 69 ":cronet_sources", |
| 71 "//base", | 70 "//base", |
| 72 "//net:net", | 71 "//net:net", |
| 73 ] | 72 ] |
| 74 | 73 |
| 75 libs = [ "UIKit.Framework" ] | 74 libs = [ "UIKit.Framework" ] |
| 76 | 75 |
| 77 public_headers = [ | 76 public_headers = [ |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 ] | 171 ] |
| 173 } | 172 } |
| 174 | 173 |
| 175 group("cronet_package") { | 174 group("cronet_package") { |
| 176 deps = [ | 175 deps = [ |
| 177 ":cronet_package_copy", | 176 ":cronet_package_copy", |
| 178 ":generate_license", | 177 ":generate_license", |
| 179 ] | 178 ] |
| 180 } | 179 } |
| 181 } | 180 } |
| OLD | NEW |