Changeset 227215 in webkit


Ignore:
Timestamp:
Jan 19, 2018 10:33:52 AM (6 years ago)
Author:
keith_miller@apple.com
Message:

HaveInternalSDK includes should be "#include?"
https://bugs.webkit.org/show_bug.cgi?id=179670

Reviewed by Dan Bernstein.

Source/bmalloc:

  • Configurations/Base.xcconfig:

Source/JavaScriptCore:

  • Configurations/Base.xcconfig:

Source/WebCore:

  • Configurations/Base.xcconfig:

Source/WebInspectorUI:

  • Configurations/Base.xcconfig:

Source/WebKit:

  • Configurations/Base.xcconfig:

Source/WTF:

  • Configurations/Base.xcconfig:

Tools:

  • MiniBrowser/Configurations/Base.xcconfig:
  • MobileMiniBrowser/Configurations/Base.xcconfig:
  • TestWebKitAPI/Configurations/Base.xcconfig:
  • WebKitTestRunner/Configurations/Base.xcconfig:
Location:
trunk
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r227168 r227215  
     12018-01-19  Keith Miller  <keith_miller@apple.com>
     2
     3        HaveInternalSDK includes should be "#include?"
     4        https://bugs.webkit.org/show_bug.cgi?id=179670
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * Configurations/Base.xcconfig:
     9
    1102018-01-18  JF Bastien  <jfbastien@apple.com>
    211
  • trunk/Source/JavaScriptCore/Configurations/Base.xcconfig

    r227156 r227215  
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 #include "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
     24#include? "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
    2525
    2626USE_INTERNAL_SDK = $(USE_INTERNAL_SDK_$(CONFIGURATION));
  • trunk/Source/WTF/ChangeLog

    r227212 r227215  
     12018-01-19  Keith Miller  <keith_miller@apple.com>
     2
     3        HaveInternalSDK includes should be "#include?"
     4        https://bugs.webkit.org/show_bug.cgi?id=179670
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * Configurations/Base.xcconfig:
     9
    1102018-01-19  Alexey Proskuryakov  <ap@apple.com>
    211
  • trunk/Source/WTF/Configurations/Base.xcconfig

    r227156 r227215  
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 #include "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
     24#include? "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
    2525
    2626USE_INTERNAL_SDK = $(USE_INTERNAL_SDK_$(CONFIGURATION));
  • trunk/Source/WebCore/ChangeLog

    r227214 r227215  
     12018-01-19  Keith Miller  <keith_miller@apple.com>
     2
     3        HaveInternalSDK includes should be "#include?"
     4        https://bugs.webkit.org/show_bug.cgi?id=179670
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * Configurations/Base.xcconfig:
     9
    1102018-01-19  Daniel Bates  <dabates@apple.com>
    211
  • trunk/Source/WebCore/Configurations/Base.xcconfig

    r227156 r227215  
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 #include "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
     24#include? "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
    2525
    2626USE_INTERNAL_SDK = $(USE_INTERNAL_SDK_$(CONFIGURATION));
  • trunk/Source/WebInspectorUI/ChangeLog

    r227156 r227215  
     12018-01-19  Keith Miller  <keith_miller@apple.com>
     2
     3        HaveInternalSDK includes should be "#include?"
     4        https://bugs.webkit.org/show_bug.cgi?id=179670
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * Configurations/Base.xcconfig:
     9
    1102018-01-18  Dan Bernstein  <mitz@apple.com>
    211
  • trunk/Source/WebInspectorUI/Configurations/Base.xcconfig

    r227156 r227215  
    1 #include "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
     1#include? "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
    22
    33USE_INTERNAL_SDK = $(USE_INTERNAL_SDK_$(CONFIGURATION));
  • trunk/Source/WebKit/ChangeLog

    r227214 r227215  
     12018-01-19  Keith Miller  <keith_miller@apple.com>
     2
     3        HaveInternalSDK includes should be "#include?"
     4        https://bugs.webkit.org/show_bug.cgi?id=179670
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * Configurations/Base.xcconfig:
     9
    1102018-01-19  Daniel Bates  <dabates@apple.com>
    211
  • trunk/Source/WebKit/Configurations/Base.xcconfig

    r227156 r227215  
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 #include "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
     24#include? "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
    2525
    2626USE_INTERNAL_SDK = $(USE_INTERNAL_SDK_$(CONFIGURATION));
  • trunk/Source/bmalloc/ChangeLog

    r227156 r227215  
     12018-01-19  Keith Miller  <keith_miller@apple.com>
     2
     3        HaveInternalSDK includes should be "#include?"
     4        https://bugs.webkit.org/show_bug.cgi?id=179670
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * Configurations/Base.xcconfig:
     9
    1102018-01-18  Dan Bernstein  <mitz@apple.com>
    211
  • trunk/Source/bmalloc/Configurations/Base.xcconfig

    r227156 r227215  
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 #include "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
     24#include? "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
    2525
    2626USE_INTERNAL_SDK = $(USE_INTERNAL_SDK_$(CONFIGURATION));
  • trunk/Tools/ChangeLog

    r227198 r227215  
     12018-01-19  Keith Miller  <keith_miller@apple.com>
     2
     3        HaveInternalSDK includes should be "#include?"
     4        https://bugs.webkit.org/show_bug.cgi?id=179670
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * MiniBrowser/Configurations/Base.xcconfig:
     9        * MobileMiniBrowser/Configurations/Base.xcconfig:
     10        * TestWebKitAPI/Configurations/Base.xcconfig:
     11        * WebKitTestRunner/Configurations/Base.xcconfig:
     12
    1132018-01-19  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Tools/MiniBrowser/Configurations/Base.xcconfig

    r227156 r227215  
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 #include "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
     24#include? "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
    2525
    2626USE_INTERNAL_SDK = $(USE_INTERNAL_SDK_$(CONFIGURATION));
  • trunk/Tools/MobileMiniBrowser/Configurations/Base.xcconfig

    r225815 r227215  
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 #include "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
     24#include? "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
    2525
    2626USE_INTERNAL_SDK = $(USE_INTERNAL_SDK_$(CONFIGURATION));
  • trunk/Tools/TestWebKitAPI/Configurations/Base.xcconfig

    r227156 r227215  
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 #include "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
     24#include? "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
    2525
    2626USE_INTERNAL_SDK = $(USE_INTERNAL_SDK_$(CONFIGURATION));
  • trunk/Tools/WebKitTestRunner/Configurations/Base.xcconfig

    r227156 r227215  
    2222// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2323
    24 #include "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
     24#include? "../../../../Internal/Configurations/HaveInternalSDK.xcconfig"
    2525
    2626USE_INTERNAL_SDK = $(USE_INTERNAL_SDK_$(CONFIGURATION));
Note: See TracChangeset for help on using the changeset viewer.