summaryrefslogtreecommitdiffstats
path: root/ios/provider
diff options
context:
space:
mode:
authorrohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-08 21:01:00 +0000
committerrohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-08 21:01:00 +0000
commit70ea557108e5596f7e1b99b90df7cc3ff52c9041 (patch)
tree7d2c9a21f0a03aa4d1a58e29c694136ec792d1b3 /ios/provider
parent33447b3cc4995b6bd2086a30d61bfebe60053b8f (diff)
downloadchromium_src-70ea557108e5596f7e1b99b90df7cc3ff52c9041.zip
chromium_src-70ea557108e5596f7e1b99b90df7cc3ff52c9041.tar.gz
chromium_src-70ea557108e5596f7e1b99b90df7cc3ff52c9041.tar.bz2
Move the iOS user agent functions to ios/web/public.
The old implementations lived in //content, but they had no content dependencies, so they are safe to move to //web. BUG=390969 TEST=None Review URL: https://codereview.chromium.org/364853010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281824 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ios/provider')
-rw-r--r--ios/provider/ios_provider_web.gyp24
1 files changed, 24 insertions, 0 deletions
diff --git a/ios/provider/ios_provider_web.gyp b/ios/provider/ios_provider_web.gyp
new file mode 100644
index 0000000..df72fb7
--- /dev/null
+++ b/ios/provider/ios_provider_web.gyp
@@ -0,0 +1,24 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'ios_provider_web',
+ 'type': 'none',
+ 'include_dirs': [
+ '../..',
+ ],
+ 'sources': [
+ '../public/provider/web/web_state.h',
+ '../public/provider/web/web_state_user_data.h',
+ ],
+ 'dependencies': [
+ '../ios_base.gyp:ios_consumer_base',
+ ],
+ },
+ ],
+}