diff options
| author | Steve Block <steveblock@google.com> | 2009-11-19 16:36:46 +0000 |
|---|---|---|
| committer | Steve Block <steveblock@google.com> | 2009-11-19 16:36:46 +0000 |
| commit | 5a4ee05abdf9370979182f6a987dbad3ee7215bc (patch) | |
| tree | c28628d719c2c355c977757cc9fe220b118c824a | |
| parent | 2cbe13df1515446fdaf8669483ab6025fd1c9833 (diff) | |
| download | external_webkit-5a4ee05abdf9370979182f6a987dbad3ee7215bc.zip external_webkit-5a4ee05abdf9370979182f6a987dbad3ee7215bc.tar.gz external_webkit-5a4ee05abdf9370979182f6a987dbad3ee7215bc.tar.bz2 | |
Fix the fact that enablement of VIDEO and WORKERS erroneously depends upon whether SVG is enabled!
This dependency was accidentally introduced in the following changes ...
https://android-git.corp.google.com/w/?p=platform/external/webkit.git;a=commitdiff;h=917149bb7d8c49bb401a6e3740a1046168397bc4#patch5
https://android-git.corp.google.com/w/?p=platform/external/webkit.git;a=commitdiff;h=fc3566dd8afb671f5f2629103dc98fc790e21a90#patch5
Change-Id: Iede51a8d98cbd97a2e3b164e325705c862d8f399
| -rw-r--r-- | WebCore/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/config.h b/WebCore/config.h index 08d54e2..9aa9fbb 100644 --- a/WebCore/config.h +++ b/WebCore/config.h @@ -94,11 +94,11 @@ #define ENABLE_FTPDIR 0 #ifndef ENABLE_SVG #define ENABLE_SVG 0 +#endif #undef ENABLE_VIDEO #define ENABLE_VIDEO 1 #undef ENABLE_WORKERS #define ENABLE_WORKERS 1 -#endif #if ENABLE_SVG #if !defined(ENABLE_SVG_ANIMATION) #define ENABLE_SVG_ANIMATION 0 // to enable: |
