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

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

Issue 2160653002: [iOS/GN] Fix generation of .dSYM for fat binary builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and add support for save_unstripped_output. Created 4 years, 5 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 | « build/toolchain/mac/linker_driver.py ('k') | 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/version.gni") 9 import("//build/util/version.gni")
10 import("//chrome/version.gni") 10 import("//chrome/version.gni")
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "cronet_c_for_grpc.h", 100 "cronet_c_for_grpc.h",
101 ] 101 ]
102 102
103 sources = [ 103 sources = [
104 "Cronet.h", 104 "Cronet.h",
105 "Cronet.mm", 105 "Cronet.mm",
106 ] 106 ]
107 107
108 configs -= [ "//build/config/compiler:default_symbols" ] 108 configs -= [ "//build/config/compiler:default_symbols" ]
109 configs += [ "//build/config/compiler:symbols" ] 109 configs += [ "//build/config/compiler:symbols" ]
110 configs += [ "//build/config/mac:strip_all" ]
111 } 110 }
112 111
113 bundle_data("cronet_test_bundle_data") { 112 bundle_data("cronet_test_bundle_data") {
114 testonly = true 113 testonly = true
115 sources = [ 114 sources = [
116 "//net/data/ssl/certificates/quic_test.example.com.crt", 115 "//net/data/ssl/certificates/quic_test.example.com.crt",
117 "//net/data/ssl/certificates/quic_test.example.com.key", 116 "//net/data/ssl/certificates/quic_test.example.com.key",
118 "//net/data/ssl/certificates/quic_test.example.com.key.pkcs8", 117 "//net/data/ssl/certificates/quic_test.example.com.key.pkcs8",
119 "//net/data/ssl/certificates/quic_test.example.com.key.sct", 118 "//net/data/ssl/certificates/quic_test.example.com.key.sct",
120 ] 119 ]
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 ] 193 ]
195 } 194 }
196 195
197 group("cronet_package") { 196 group("cronet_package") {
198 deps = [ 197 deps = [
199 ":cronet_package_copy", 198 ":cronet_package_copy",
200 ":generate_license", 199 ":generate_license",
201 ] 200 ]
202 } 201 }
203 } 202 }
OLDNEW
« no previous file with comments | « build/toolchain/mac/linker_driver.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698