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

Unified Diff: components/cronet/ios/cronet_consumer/BUILD.gn

Issue 2807283002: [Cronet] Build static libcronet.a for iOS with complete dependencies. (Closed)
Patch Set: Remove cronet_sample, make cronet_consumer_static buildable with lib_cronet. Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: components/cronet/ios/cronet_consumer/BUILD.gn
diff --git a/components/cronet/ios/cronet_consumer/BUILD.gn b/components/cronet/ios/cronet_consumer/BUILD.gn
index 4ad4358eaf4b0544907e7d52debc9420c27aee80..533b97151ace0d6ba6d6f619f55238117b2e9982 100644
--- a/components/cronet/ios/cronet_consumer/BUILD.gn
+++ b/components/cronet/ios/cronet_consumer/BUILD.gn
@@ -24,7 +24,34 @@ ios_app_bundle("cronet_consumer") {
"main.mm",
]
+ include_dirs = [ "//components/grpc_support/include" ]
+
bundle_deps = [ "//components/cronet/ios:cronet_framework+bundle" ]
configs += [ "//build/config/compiler:enable_arc" ]
}
+
+ios_app_bundle("cronet_consumer_static") {
kapishnikov 2017/05/17 16:02:49 It looks that "cronet_consumer" & "cronet_consumer
mef 2017/05/19 18:07:59 Good idea. I'll try that in the next patch.
mef 2017/05/22 15:12:30 Done.
+ info_plist = "cronet-consumer-Info.plist"
+
+ deps = [
+ "//base:base",
+ "//components/cronet/ios:lib_cronet",
+
+ # All shared libraries must have the sanitizer deps to properly link in
+ # asan mode (this target will be empty in other cases).
+ "//build/config/sanitizers:deps",
+ ]
+
+ sources = [
+ "cronet_consumer_app_delegate.h",
+ "cronet_consumer_app_delegate.mm",
+ "cronet_consumer_view_controller.h",
+ "cronet_consumer_view_controller.m",
+ "main.mm",
+ ]
+
+ include_dirs = [ "//components/grpc_support/include" ]
+
+ configs += [ "//build/config/compiler:enable_arc" ]
+}

Powered by Google App Engine
This is Rietveld 408576698