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

Unified Diff: ios/web/ios_web.gyp

Issue 364853010: Move the iOS user agent functions to ios/web/public. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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/web/ios_web.gyp
diff --git a/components/language_usage_metrics.gypi b/ios/web/ios_web.gyp
similarity index 60%
copy from components/language_usage_metrics.gypi
copy to ios/web/ios_web.gyp
index e150a1bba9e6673d38945da908c9edd17bea6fcc..df20bcc049c010f6ef23a1d39d4798ed8ad1182a 100644
--- a/components/language_usage_metrics.gypi
+++ b/ios/web/ios_web.gyp
@@ -3,19 +3,22 @@
# found in the LICENSE file.
{
+ 'variables': {
+ 'chromium_code': 1,
+ },
'targets': [
{
- 'target_name': 'language_usage_metrics',
+ 'target_name': 'ios_web',
'type': 'static_library',
- 'dependencies': [
- '../base/base.gyp:base',
- ],
'include_dirs': [
- '..',
+ '../..',
+ ],
+ 'dependencies': [
+ '../../base/base.gyp:base',
],
'sources': [
- 'language_usage_metrics/language_usage_metrics.cc',
- 'language_usage_metrics/language_usage_metrics.h',
+ 'public/user_agent.h',
+ 'public/user_agent.mm',
],
},
],

Powered by Google App Engine
This is Rietveld 408576698