Title: [102178] trunk/Source/WebCore
Revision
102178
Author
[email protected]
Date
2011-12-06 14:07:00 -0800 (Tue, 06 Dec 2011)

Log Message

Enable web audio by default on non-Mac POSIX platforms
https://bugs.webkit.org/show_bug.cgi?id=73491

Patch by Ruben <[email protected]> on 2011-12-06
Reviewed by Tony Chang.

No new tests, just changing gyp includes.

* WebCore.gyp/WebCore.gyp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (102177 => 102178)


--- trunk/Source/WebCore/ChangeLog	2011-12-06 22:02:15 UTC (rev 102177)
+++ trunk/Source/WebCore/ChangeLog	2011-12-06 22:07:00 UTC (rev 102178)
@@ -1,3 +1,14 @@
+2011-12-06  Ruben  <[email protected]>
+
+        Enable web audio by default on non-Mac POSIX platforms
+        https://bugs.webkit.org/show_bug.cgi?id=73491
+
+        Reviewed by Tony Chang.
+
+        No new tests, just changing gyp includes.
+
+        * WebCore.gyp/WebCore.gyp:
+
 2011-12-06  Benjamin Poulain  <[email protected]>
 
         Put length in its own variable in KURL copyASCII

Modified: trunk/Source/WebCore/WebCore.gyp/WebCore.gyp (102177 => 102178)


--- trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2011-12-06 22:02:15 UTC (rev 102177)
+++ trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2011-12-06 22:07:00 UTC (rev 102178)
@@ -1095,7 +1095,7 @@
             'include_dirs+++': ['../dom'],
           },
         }],
-        ['(OS=="linux" or OS=="win") and "WTF_USE_WEBAUDIO_FFTW=1" in feature_defines', {
+        ['OS != "mac" and OS != "android" and "WTF_USE_WEBAUDIO_FFTW=1" in feature_defines', {
           'include_dirs': [
             '<(chromium_src_dir)/third_party/fftw/api',
           ],
@@ -1308,7 +1308,7 @@
             'include_dirs++': ['../dom'],
           },
         }],
-        ['(OS=="linux" or OS=="win") and "WTF_USE_WEBAUDIO_FFTW=1" in feature_defines', {
+        ['OS != "mac" and OS != "android" and "WTF_USE_WEBAUDIO_FFTW=1" in feature_defines', {
           # This directory needs to be on the include path for multiple sub-targets of webcore.
           'direct_dependent_settings': {
             'include_dirs': [
@@ -1316,7 +1316,7 @@
             ],
           },
         }],
-        ['(OS=="mac" or OS=="linux" or OS=="win") and "WTF_USE_WEBAUDIO_FFMPEG=1" in feature_defines', {
+        ['OS != "android" and "WTF_USE_WEBAUDIO_FFMPEG=1" in feature_defines', {
           # This directory needs to be on the include path for multiple sub-targets of webcore.
           'direct_dependent_settings': {
             'include_dirs': [
@@ -1943,7 +1943,7 @@
             'include_dirs+++': ['../dom'],
           },
         }],
-        ['OS=="linux" and "WTF_USE_WEBAUDIO_FFTW=1" in feature_defines', {
+        ['os_posix == 1 and OS != "mac" and OS != "android" and "WTF_USE_WEBAUDIO_FFTW=1" in feature_defines', {
           # FIXME: (kbr) figure out how to make these dependencies
           # work in a cross-platform way. Attempts to use
           # "link_settings" and "libraries" in conjunction with the
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to