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

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

Issue 2611853002: [Cronet] Provide shim from deprecated cronet_c_for_grpc API to bidirectional_stream_c API. (Closed)
Patch Set: Use #define instead of typedef and function forwarders. Created 3 years, 11 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 | components/cronet/ios/Cronet.h » ('j') | 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 sources = [ 47 sources = [
48 "../histogram_manager.cc", 48 "../histogram_manager.cc",
49 "../histogram_manager.h", 49 "../histogram_manager.h",
50 "../stale_host_resolver.cc", 50 "../stale_host_resolver.cc",
51 "../stale_host_resolver.h", 51 "../stale_host_resolver.h",
52 "../url_request_context_config.cc", 52 "../url_request_context_config.cc",
53 "../url_request_context_config.h", 53 "../url_request_context_config.h",
54 "Cronet.h", 54 "Cronet.h",
55 "Cronet.mm", 55 "Cronet.mm",
56 "cronet_c_for_grpc.h",
56 "cronet_environment.h", 57 "cronet_environment.h",
57 "cronet_environment.mm", 58 "cronet_environment.mm",
58 ] 59 ]
59 60
60 include_dirs = [ "//components/grpc_support/include" ] 61 include_dirs = [ "//components/grpc_support/include" ]
61 62
62 if (!use_platform_icu_alternatives) { 63 if (!use_platform_icu_alternatives) {
63 deps += [ "//base:i18n" ] 64 deps += [ "//base:i18n" ]
64 } 65 }
65 } 66 }
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 ] 147 ]
147 148
148 libs = [ "UIKit.Framework" ] 149 libs = [ "UIKit.Framework" ]
149 150
150 include_dirs = [ "//components/grpc_support/include" ] 151 include_dirs = [ "//components/grpc_support/include" ]
151 152
152 public_deps = [ 153 public_deps = [
153 "//components/grpc_support", 154 "//components/grpc_support",
154 ] 155 ]
155 156
156 public_headers = [ "Cronet.h" ] 157 public_headers = [
158 "Cronet.h",
159 "cronet_c_for_grpc.h",
160 ]
157 public_headers += grpc_public_headers 161 public_headers += grpc_public_headers
158 162
159 sources = [ 163 sources = [
160 "Cronet.h", 164 "Cronet.h",
161 ] 165 ]
162 166
163 configs -= [ "//build/config/compiler:default_symbols" ] 167 configs -= [ "//build/config/compiler:default_symbols" ]
164 configs += [ "//build/config/compiler:symbols" ] 168 configs += [ "//build/config/compiler:symbols" ]
165 } 169 }
166 170
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 ] 227 ]
224 } 228 }
225 229
226 group("cronet_package") { 230 group("cronet_package") {
227 deps = [ 231 deps = [
228 ":cronet_package_copy", 232 ":cronet_package_copy",
229 ":generate_license", 233 ":generate_license",
230 ] 234 ]
231 } 235 }
232 } 236 }
OLDNEW
« no previous file with comments | « no previous file | components/cronet/ios/Cronet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698