diff options
author | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-01 14:58:10 +0000 |
---|---|---|
committer | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-01 14:58:10 +0000 |
commit | 22afac4f37b7ff1ad94224b0b26ddac89757916c (patch) | |
tree | 11e225e6b196070225d1bb0be9135983929b8595 /ios/ios.gyp | |
parent | 29515f445f085ae33c6342853e02166d6255300b (diff) | |
download | chromium_src-22afac4f37b7ff1ad94224b0b26ddac89757916c.zip chromium_src-22afac4f37b7ff1ad94224b0b26ddac89757916c.tar.gz chromium_src-22afac4f37b7ff1ad94224b0b26ddac89757916c.tar.bz2 |
Create top-level ios/public/ directory.
To better mirror the structure of other API layers (content/public and
third_party/WebKit/public), there will be a single ios/public/ directory that
contains all interfaces referenced by not-yet-upstreamed Chrome for iOS code,
rather than these interfaces being scattered in subdirectories further
underneath ios/.
This CL also changes gyp structure to better match other modules: ios_consumer.gyp is moved to directly under ios/, and an ios.gyp is created with a single top-level "ios" target to be used in build/all.gyp.
Review URL: https://chromiumcodereview.appspot.com/18272004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209434 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ios/ios.gyp')
-rw-r--r-- | ios/ios.gyp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ios/ios.gyp b/ios/ios.gyp new file mode 100644 index 0000000..5e835b3 --- /dev/null +++ b/ios/ios.gyp @@ -0,0 +1,17 @@ +# 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', + 'type': 'none', + 'dependencies': [ + 'ios_consumer.gyp:*', + ], + }, + ], +} |