diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-18 21:36:32 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-18 21:36:32 +0000 |
commit | 9fc7e36e831c9922bf425c8accc63d09303b6357 (patch) | |
tree | 876a51b8510f1ed98793e758de403bf142a06256 /content/content_common.gypi | |
parent | 34d01155badb8848408b68101efa5c8b0784992d (diff) | |
download | chromium_src-9fc7e36e831c9922bf425c8accc63d09303b6357.zip chromium_src-9fc7e36e831c9922bf425c8accc63d09303b6357.tar.gz chromium_src-9fc7e36e831c9922bf425c8accc63d09303b6357.tar.bz2 |
Enable a minimal content/ build on iOS
This removes some files from the already-upstreamed iOS content/ gyp
support in order to get a minimal target building while the remaining
content/ changes are upstreamed.
Minor ifdefing is necessary in a few files in order to build them on
iOS; these are included since they are core files without which it's
very difficult to bring up a build at all.
Adds one new class to the ui/ build since it's needed by the content/
code that is now built.
BUG=None
Review URL: https://chromiumcodereview.appspot.com/10933091
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157421 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_common.gypi')
-rw-r--r-- | content/content_common.gypi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/content_common.gypi b/content/content_common.gypi index fe41874..07f4c9d 100644 --- a/content/content_common.gypi +++ b/content/content_common.gypi @@ -11,7 +11,6 @@ '../skia/skia.gyp:skia', '../third_party/icu/icu.gyp:icuuc', '../ui/ui.gyp:ui', - '../webkit/support/webkit_support.gyp:forms', '../webkit/support/webkit_support.gyp:user_agent', ], 'include_dirs': [ @@ -381,6 +380,7 @@ # implementation, and re-include what is used. ['exclude', '\\.(cc|mm)$'], ['include', '_ios\\.(cc|mm)$'], + ['include', '^public/common/content_client\\.cc$'], ['include', '^public/common/content_constants\\.cc$'], ['include', '^public/common/content_switches\\.cc$'], ['include', '^public/common/frame_navigate_params\\.cc$'], @@ -407,6 +407,7 @@ '../webkit/support/webkit_support.gyp:blob', '../webkit/support/webkit_support.gyp:database', '../webkit/support/webkit_support.gyp:fileapi', + '../webkit/support/webkit_support.gyp:forms', '../webkit/support/webkit_support.gyp:webkit_base', ], }], |