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

Unified Diff: ios/chrome/ios_chrome.gyp

Issue 1073863005: Upstream string_util function. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missing , Created 5 years, 8 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: ios/chrome/ios_chrome.gyp
diff --git a/ios/chrome/ios_chrome.gyp b/ios/chrome/ios_chrome.gyp
index b2029dc7a65e6e8c5b4ee1bff1f098bf32f77514..23f2ac798af630b004d7f0a0356855cdb9f2baf2 100644
--- a/ios/chrome/ios_chrome.gyp
+++ b/ios/chrome/ios_chrome.gyp
@@ -39,6 +39,7 @@
'../provider/ios_provider_chrome.gyp:ios_provider_chrome_browser',
'../web/ios_web.gyp:ios_web',
'injected_js',
+ 'ios_chrome_common',
'ios_chrome_resources.gyp:ios_theme_resources_gen',
],
'link_settings': {
@@ -199,6 +200,25 @@
],
},
{
+ 'target_name': 'ios_chrome_common',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '../..',
+ ],
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
droger 2015/04/13 09:49:13 Looks like we also need: '$(SDKROOT)/System/Librar
Olivier 2015/04/13 16:02:05 Done.
+ ],
+ },
+ 'sources': [
+ 'common/string_util.h',
+ 'common/string_util.mm',
+ ]
+ },
+ {
'target_name': 'injected_js',
'type': 'none',
'sources': [

Powered by Google App Engine
This is Rietveld 408576698