diff options
author | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 11:42:33 +0000 |
---|---|---|
committer | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 11:42:33 +0000 |
commit | 98880d4be6590ec140014a6564f9880d54db6360 (patch) | |
tree | 2be72cca92220517188308c991ce1a4c1098b63f /ios/ios_web.gyp | |
parent | 5eebb43b5eb87e9a2d853b8d66c65546e1a27e12 (diff) | |
download | chromium_src-98880d4be6590ec140014a6564f9880d54db6360.zip chromium_src-98880d4be6590ec140014a6564f9880d54db6360.tar.gz chromium_src-98880d4be6590ec140014a6564f9880d54db6360.tar.bz2 |
Introduce the WebState iOS provider interface.
This interface will serve a purpose similar to that of WebContents on
content-based platforms.
This CL also changes the structure of the gypfiles under ios/ to be divided by
sub-module (e.g., base vs. chrome) rather than portion of the API layer
(consumer vs. provider). The latter structure was flawed in that it would
eventually have caused GYP to complain about circular dependencies:
provider targets from higher-level modules will have to depend on consumer
targets from lower-level modules, and consumer targets from higher-level
modules will have to depend on provider targets from lower-level modules.
Review URL: https://chromiumcodereview.appspot.com/18541002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209956 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ios/ios_web.gyp')
-rw-r--r-- | ios/ios_web.gyp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ios/ios_web.gyp b/ios/ios_web.gyp new file mode 100644 index 0000000..6f3f2d4 --- /dev/null +++ b/ios/ios_web.gyp @@ -0,0 +1,24 @@ +# Copyright 2013 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', + ], + }, + ], +} |