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

Unified Diff: components/cronet.gypi

Issue 1947903003: Cronet Dynamic Framework for iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Misha's comments. Created 4 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
« no previous file with comments | « no previous file | components/cronet/ios/Cronet.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cronet.gypi
diff --git a/components/cronet.gypi b/components/cronet.gypi
index 228057b4af71def3d0659e7b4975639708cfb420..0b8ca753dda81fa25b8dea90211a64c5cb5dfb7d 100644
--- a/components/cronet.gypi
+++ b/components/cronet.gypi
@@ -797,6 +797,52 @@
],
},
{
+ 'target_name': 'cronet_framework',
+ 'product_name': 'Cronet',
+ 'type': 'shared_library',
+ 'mac_bundle': 1,
+ 'sources': [
+ 'cronet/ios/Cronet.h',
+ 'cronet/ios/cronet_c_for_grpc.h',
+ 'cronet/ios/empty.cc',
+ ],
+ 'mac_framework_headers': [
+ 'cronet/ios/Cronet.h',
+ 'cronet/ios/cronet_c_for_grpc.h',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ 'Foundation.framework',
+ ],
+ },
+ 'xcode_settings': {
+ 'DEBUGGING_SYMBOLS': 'YES',
+ 'INFOPLIST_FILE': 'cronet/ios/Info.plist',
+ 'LD_DYLIB_INSTALL_NAME': '@loader_path/Frameworks/Cronet.framework/Cronet',
+ },
+ 'dependencies': [
+ 'cronet_static',
+ '../base/base.gyp:base',
+ ],
+ 'configurations': {
+ 'Debug_Base': {
+ 'xcode_settings': {
+ 'DEPLOYMENT_POSTPROCESSING': 'NO',
+ 'DEBUG_INFORMATION_FORMAT': 'dwarf',
+ 'STRIP_INSTALLED_PRODUCT': 'NO',
+ }
+ },
+ 'Release_Base': {
+ 'xcode_settings': {
+ 'DEPLOYMENT_POSTPROCESSING': 'YES',
+ 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
+ 'STRIP_INSTALLED_PRODUCT': 'YES',
+ 'STRIP_STYLE': 'non-global',
+ }
+ },
+ },
+ },
+ {
'target_name': 'cronet_test',
'type': 'executable',
'dependencies': [
« no previous file with comments | « no previous file | components/cronet/ios/Cronet.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698