Index: ios/crnet/crnet.gyp |
diff --git a/ios/crnet/crnet.gyp b/ios/crnet/crnet.gyp |
index 6bfd2b3d67a458075a1fbf831c52993e365c71be..77f5fc80bee3e4ef8351ced0ed168b7c29c0e7c9 100644 |
--- a/ios/crnet/crnet.gyp |
+++ b/ios/crnet/crnet.gyp |
@@ -45,6 +45,62 @@ |
}, |
}, |
{ |
+ 'target_name': 'crnet_framework', |
+ 'product_name': 'CrNet', |
+ 'type': 'shared_library', |
+ 'mac_bundle': 1, |
+ 'sources': [ |
+ # TODO(ellyjones): http://crbug.com/485144 |
kapishnikov
2016/05/17 20:58:37
The bug is assigned to me.
mef
2016/05/20 19:52:45
This bug seems to be outdated. Removed.
|
+ '../../net/url_request/sdch_dictionary_fetcher.cc', |
+ '../../net/url_request/sdch_dictionary_fetcher.h', |
+ 'CrNet.h', |
+ 'CrNet.mm', |
+ 'crnet_environment.h', |
+ 'crnet_environment.mm', |
+ 'sdch_owner_pref_storage.cc', |
+ 'sdch_owner_pref_storage.h', |
+ 'sdch_owner_pref_storage.cc', |
+ ], |
+ 'mac_framework_headers': [ |
+ 'CrNet.h', |
+ ], |
+ 'link_settings': { |
+ 'libraries': [ |
+ 'Foundation.framework', |
+ ], |
+ }, |
+ 'xcode_settings': { |
+ 'DEBUGGING_SYMBOLS': 'YES', |
+ 'INFOPLIST_FILE': 'Info.plist', |
+ 'LD_DYLIB_INSTALL_NAME': '@loader_path/Frameworks/CrNet.framework/CrNet', |
+ }, |
+ 'dependencies': [ |
+ '../../base/base.gyp:base', |
+ '../../components/prefs/prefs.gyp:prefs', |
+ '../../ios/net/ios_net.gyp:ios_net', |
+ '../../ios/web/ios_web.gyp:user_agent', |
+ '../../net/net.gyp:net', |
+ 'crnet_resources', |
kapishnikov
2016/05/17 20:58:37
Do 'crnet_resources' resources appear under "CrNet
mef
2016/05/20 19:52:45
Yes, they do.
|
+ ], |
+ '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', |
+ } |
+ }, |
+ }, |
+ }, |
+ { |
# This bundle contains "Accept-Languages" header values for known locales. |
# TODO(huey): These strings should be auto-generated from chrome's .xtb |
# files, not hardcoded. |