Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (140393 => 140394)
--- trunk/Source/_javascript_Core/ChangeLog 2013-01-22 08:33:45 UTC (rev 140393)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-01-22 08:38:29 UTC (rev 140394)
@@ -1,3 +1,15 @@
+2013-01-22 Tim Horton <[email protected]>
+
+ PDFPlugin: Build PDFPlugin everywhere, enable at runtime
+ https://bugs.webkit.org/show_bug.cgi?id=107117
+
+ Reviewed by Alexey Proskuryakov.
+
+ Since PDFLayerController SPI is all forward-declared, the plugin should build
+ on all Mac platforms, and can be enabled at runtime.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2013-01-21 Justin Schuh <[email protected]>
[CHROMIUM] Suppress c4267 build warnings for Win64 targets
Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (140393 => 140394)
--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig 2013-01-22 08:33:45 UTC (rev 140393)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig 2013-01-22 08:38:29 UTC (rev 140394)
@@ -124,11 +124,7 @@
ENABLE_NOTIFICATIONS_macosx_1080 = ENABLE_NOTIFICATIONS;
ENABLE_NOTIFICATIONS_macosx_1090 = ENABLE_NOTIFICATIONS;
ENABLE_PAGE_VISIBILITY_API = ;
-ENABLE_PDFKIT_PLUGIN = $(ENABLE_PDFKIT_PLUGIN_$(PLATFORM_NAME));
-ENABLE_PDFKIT_PLUGIN_macosx = $(ENABLE_PDFKIT_PLUGIN_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-ENABLE_PDFKIT_PLUGIN_macosx_1070 = ;
-ENABLE_PDFKIT_PLUGIN_macosx_1080 = ;
-ENABLE_PDFKIT_PLUGIN_macosx_1090 = ENABLE_PDFKIT_PLUGIN;
+ENABLE_PDFKIT_PLUGIN = ENABLE_PDFKIT_PLUGIN;
ENABLE_PROGRESS_ELEMENT = ENABLE_PROGRESS_ELEMENT;
ENABLE_PROXIMITY_EVENTS = ;
ENABLE_QUOTA = ;
Modified: trunk/Source/WebCore/ChangeLog (140393 => 140394)
--- trunk/Source/WebCore/ChangeLog 2013-01-22 08:33:45 UTC (rev 140393)
+++ trunk/Source/WebCore/ChangeLog 2013-01-22 08:38:29 UTC (rev 140394)
@@ -1,3 +1,15 @@
+2013-01-22 Tim Horton <[email protected]>
+
+ PDFPlugin: Build PDFPlugin everywhere, enable at runtime
+ https://bugs.webkit.org/show_bug.cgi?id=107117
+
+ Reviewed by Alexey Proskuryakov.
+
+ Since PDFLayerController SPI is all forward-declared, the plugin should build
+ on all Mac platforms, and can be enabled at runtime.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2013-01-22 Dominic Mazzoni <[email protected]>
AX: Should assert if we try to create two AXObjects that point to the same renderer or node
Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (140393 => 140394)
--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig 2013-01-22 08:33:45 UTC (rev 140393)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig 2013-01-22 08:38:29 UTC (rev 140394)
@@ -124,11 +124,7 @@
ENABLE_NOTIFICATIONS_macosx_1080 = ENABLE_NOTIFICATIONS;
ENABLE_NOTIFICATIONS_macosx_1090 = ENABLE_NOTIFICATIONS;
ENABLE_PAGE_VISIBILITY_API = ;
-ENABLE_PDFKIT_PLUGIN = $(ENABLE_PDFKIT_PLUGIN_$(PLATFORM_NAME));
-ENABLE_PDFKIT_PLUGIN_macosx = $(ENABLE_PDFKIT_PLUGIN_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-ENABLE_PDFKIT_PLUGIN_macosx_1070 = ;
-ENABLE_PDFKIT_PLUGIN_macosx_1080 = ;
-ENABLE_PDFKIT_PLUGIN_macosx_1090 = ENABLE_PDFKIT_PLUGIN;
+ENABLE_PDFKIT_PLUGIN = ENABLE_PDFKIT_PLUGIN;
ENABLE_PROGRESS_ELEMENT = ENABLE_PROGRESS_ELEMENT;
ENABLE_PROXIMITY_EVENTS = ;
ENABLE_QUOTA = ;
Modified: trunk/Source/WebKit/mac/ChangeLog (140393 => 140394)
--- trunk/Source/WebKit/mac/ChangeLog 2013-01-22 08:33:45 UTC (rev 140393)
+++ trunk/Source/WebKit/mac/ChangeLog 2013-01-22 08:38:29 UTC (rev 140394)
@@ -1,3 +1,15 @@
+2013-01-22 Tim Horton <[email protected]>
+
+ PDFPlugin: Build PDFPlugin everywhere, enable at runtime
+ https://bugs.webkit.org/show_bug.cgi?id=107117
+
+ Reviewed by Alexey Proskuryakov.
+
+ Since PDFLayerController SPI is all forward-declared, the plugin should build
+ on all Mac platforms, and can be enabled at runtime.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2013-01-21 Dirk Schulze <[email protected]>
Add build flag for Canvas's Path object (disabled by default)
Modified: trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (140393 => 140394)
--- trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig 2013-01-22 08:33:45 UTC (rev 140393)
+++ trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig 2013-01-22 08:38:29 UTC (rev 140394)
@@ -124,11 +124,7 @@
ENABLE_NOTIFICATIONS_macosx_1080 = ENABLE_NOTIFICATIONS;
ENABLE_NOTIFICATIONS_macosx_1090 = ENABLE_NOTIFICATIONS;
ENABLE_PAGE_VISIBILITY_API = ;
-ENABLE_PDFKIT_PLUGIN = $(ENABLE_PDFKIT_PLUGIN_$(PLATFORM_NAME));
-ENABLE_PDFKIT_PLUGIN_macosx = $(ENABLE_PDFKIT_PLUGIN_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-ENABLE_PDFKIT_PLUGIN_macosx_1070 = ;
-ENABLE_PDFKIT_PLUGIN_macosx_1080 = ;
-ENABLE_PDFKIT_PLUGIN_macosx_1090 = ENABLE_PDFKIT_PLUGIN;
+ENABLE_PDFKIT_PLUGIN = ENABLE_PDFKIT_PLUGIN;
ENABLE_PROGRESS_ELEMENT = ENABLE_PROGRESS_ELEMENT;
ENABLE_PROXIMITY_EVENTS = ;
ENABLE_QUOTA = ;
Modified: trunk/Source/WebKit2/ChangeLog (140393 => 140394)
--- trunk/Source/WebKit2/ChangeLog 2013-01-22 08:33:45 UTC (rev 140393)
+++ trunk/Source/WebKit2/ChangeLog 2013-01-22 08:38:29 UTC (rev 140394)
@@ -1,3 +1,15 @@
+2013-01-22 Tim Horton <[email protected]>
+
+ PDFPlugin: Build PDFPlugin everywhere, enable at runtime
+ https://bugs.webkit.org/show_bug.cgi?id=107117
+
+ Reviewed by Alexey Proskuryakov.
+
+ Since PDFLayerController SPI is all forward-declared, the plugin should build
+ on all Mac platforms, and can be enabled at runtime.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2013-01-21 Dirk Schulze <[email protected]>
Add build flag for Canvas's Path object (disabled by default)
Modified: trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig (140393 => 140394)
--- trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig 2013-01-22 08:33:45 UTC (rev 140393)
+++ trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig 2013-01-22 08:38:29 UTC (rev 140394)
@@ -124,11 +124,7 @@
ENABLE_NOTIFICATIONS_macosx_1080 = ENABLE_NOTIFICATIONS;
ENABLE_NOTIFICATIONS_macosx_1090 = ENABLE_NOTIFICATIONS;
ENABLE_PAGE_VISIBILITY_API = ;
-ENABLE_PDFKIT_PLUGIN = $(ENABLE_PDFKIT_PLUGIN_$(PLATFORM_NAME));
-ENABLE_PDFKIT_PLUGIN_macosx = $(ENABLE_PDFKIT_PLUGIN_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-ENABLE_PDFKIT_PLUGIN_macosx_1070 = ;
-ENABLE_PDFKIT_PLUGIN_macosx_1080 = ;
-ENABLE_PDFKIT_PLUGIN_macosx_1090 = ENABLE_PDFKIT_PLUGIN;
+ENABLE_PDFKIT_PLUGIN = ENABLE_PDFKIT_PLUGIN;
ENABLE_PROGRESS_ELEMENT = ENABLE_PROGRESS_ELEMENT;
ENABLE_PROXIMITY_EVENTS = ;
ENABLE_QUOTA = ;