WebKit Bugzilla
Attachment 360640 Details for
Bug 194063
: Ensure ENABLE_MEDIA_SOURCE is defined inside DerivedSources.make
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-194063-20190130162302.patch (text/plain), 2.08 KB, created by
Jer Noble
on 2019-01-30 16:23:02 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Jer Noble
Created:
2019-01-30 16:23:02 PST
Size:
2.08 KB
patch
obsolete
>Subversion Revision: 240715 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 7d86448f482e61cae09ffa770e0c087896a711af..bc1da1d3885514c3fa803f3dd29fdf77be55a92b 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,12 @@ >+2019-01-30 Jer Noble <jer.noble@apple.com> >+ >+ Ensure ENABLE_MEDIA_SOURCE is defined inside DerivedSources.make >+ https://bugs.webkit.org/show_bug.cgi?id=194063 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * DerivedSources.make: >+ > 2019-01-29 Jer Noble <jer.noble@apple.com> > > [Cocoa][EME] Modern EME uses a different path for SecureStop data than Legacy EME >diff --git a/Source/WebCore/DerivedSources.make b/Source/WebCore/DerivedSources.make >index cd6757664eec5e0c609ab2f69120c84aae9fd687..9cd44e48d0e860f2784f1c4b3ca8f9d9e509efa8 100644 >--- a/Source/WebCore/DerivedSources.make >+++ b/Source/WebCore/DerivedSources.make >@@ -1135,6 +1135,10 @@ ifeq ($(shell $(CC) -std=gnu++14 -x c++ -E -P -dM $(SDK_FLAGS) $(TARGET_TRIPLE_F > ENABLE_ORIENTATION_EVENTS = 1 > endif > >+ifeq ($(shell $(CC) -std=gnu++14 -x c++ -E -P -dM $(SDK_FLAGS) $(TARGET_TRIPLE_FLAGS) $(FRAMEWORK_FLAGS) $(HEADER_FLAGS) -include "wtf/Platform.h" /dev/null | grep ENABLE_MEDIA_SOURCE | cut -d' ' -f3), 1) >+ ENABLE_MEDIA_SOURCE = 1 >+endif >+ > ifeq ($(WTF_PLATFORM_IOS_FAMILY), 1) > FEATURE_AND_PLATFORM_DEFINES = $(FEATURE_DEFINES) WTF_PLATFORM_IOS_FAMILY > else ifeq ($(WTF_PLATFORM_MAC), 1) >@@ -1262,6 +1266,10 @@ ifndef ENABLE_ORIENTATION_EVENTS > ENABLE_ORIENTATION_EVENTS = 0 > endif > >+ifndef ENABLE_MEDIA_SOURCE >+ ENABLE_MEDIA_SOURCE = 0 >+endif >+ > ifeq ($(ENABLE_ORIENTATION_EVENTS), 1) > ADDITIONAL_IDL_DEFINES := $(ADDITIONAL_IDL_DEFINES) ENABLE_ORIENTATION_EVENTS > endif >@@ -1270,6 +1278,10 @@ ifeq ($(USE_APPLE_INTERNAL_SDK), 1) > ADDITIONAL_IDL_DEFINES := $(ADDITIONAL_IDL_DEFINES) USE_APPLE_INTERNAL_SDK > endif > >+ifeq ($(ENABLE_MEDIA_SOURCE), 1) >+ ADDITIONAL_IDL_DEFINES := $(ADDITIONAL_IDL_DEFINES) ENABLE_MEDIA_SOURCE >+endif >+ > # CSS property names and value keywords > > WEBCORE_CSS_PROPERTY_NAMES := $(WebCore)/css/CSSProperties.json
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
jonlee
:
review+
jer.noble
:
commit-queue+
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 194063
: 360640