Changeset 81708 in webkit


Ignore:
Timestamp:
Mar 22, 2011 3:09:57 PM (13 years ago)
Author:
eric@webkit.org
Message:

2011-03-22 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Make it possible to build JavaScriptCore and WebCore gyp builds outside of Source
https://bugs.webkit.org/show_bug.cgi?id=56867

This should make it possible to build the gyp-generated JavaScriptCore.xcodeproj
from a JavaScriptCore directory outside of Source.

  • gyp/JavaScriptCore.gyp:
  • gyp/run-if-exists.sh: Added.
  • gyp/update-info-plist.sh: Added.

2011-03-22 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Make it possible to build JavaScriptCore and WebCore gyp builds outside of Source
https://bugs.webkit.org/show_bug.cgi?id=56867

This should make it possible to build the gyp-generated JavaScriptGlue.xcodeproj
from a JavaScriptGlue directory outside of Source.

  • gyp/JavaScriptGlue.gyp:
  • gyp/run-if-exists.sh: Added.
  • gyp/update-info-plist.sh: Added.

2011-03-22 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Make it possible to build JavaScriptCore and WebCore gyp builds outside of Source
https://bugs.webkit.org/show_bug.cgi?id=56867

This should make it possible to build the gyp-generated WebCore.xcodeproj
from a WebCore directory outside of Source.

  • gyp/WebCore.gyp:
  • gyp/run-if-exists.sh: Added.
  • gyp/update-info-plist.sh: Added.
Location:
trunk/Source
Files:
6 edited
4 copied
3 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r81701 r81708  
     12011-03-22  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Make it possible to build JavaScriptCore and WebCore gyp builds outside of Source
     6        https://bugs.webkit.org/show_bug.cgi?id=56867
     7
     8        This should make it possible to build the gyp-generated JavaScriptCore.xcodeproj
     9        from a JavaScriptCore directory outside of Source.
     10
     11        * gyp/JavaScriptCore.gyp:
     12        * gyp/run-if-exists.sh: Added.
     13        * gyp/update-info-plist.sh: Added.
     14
    1152011-03-22  Eric Seidel  <eric@webkit.org>
    216
  • trunk/Source/JavaScriptCore/gyp/JavaScriptCore.gyp

    r81701 r81708  
    101101          'postbuild_name': 'Check For Global Initializers',
    102102          'action': [
    103             'sh', '<(DEPTH)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-global-initializers'
     103            'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-global-initializers'
    104104          ],
    105105        },
     
    107107          'postbuild_name': 'Check For Exit Time Destructors',
    108108          'action': [
    109             'sh', '<(DEPTH)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-exit-time-destructors'
     109            'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-exit-time-destructors'
    110110          ],
    111111        },
     
    113113          'postbuild_name': 'Check For Weak VTables and Externals',
    114114          'action': [
    115             'sh', '<(DEPTH)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-weak-vtables-and-externals'
     115            'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-weak-vtables-and-externals'
    116116          ],
    117117        },
     
    161161         'outputs': [],
    162162         'action': [
    163            'sh', '<(DEPTH)/gyp/update-info-plist.sh', '<(project_dir)/Info.plist'
     163           'sh', '<(project_dir)/gyp/update-info-plist.sh', '<(project_dir)/Info.plist'
    164164          ]
    165165      }],
  • trunk/Source/JavaScriptCore/gyp/run-if-exists.sh

    • Property svn:executable set to *
  • trunk/Source/JavaScriptGlue/ChangeLog

    r81655 r81708  
     12011-03-22  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Make it possible to build JavaScriptCore and WebCore gyp builds outside of Source
     6        https://bugs.webkit.org/show_bug.cgi?id=56867
     7
     8        This should make it possible to build the gyp-generated JavaScriptGlue.xcodeproj
     9        from a JavaScriptGlue directory outside of Source.
     10
     11        * gyp/JavaScriptGlue.gyp:
     12        * gyp/run-if-exists.sh: Added.
     13        * gyp/update-info-plist.sh: Added.
     14
    1152011-03-22  Adam Barth  <abarth@webkit.org>
    216
  • trunk/Source/JavaScriptGlue/gyp/JavaScriptGlue.gyp

    r81655 r81708  
    6363          'postbuild_name': 'Check For Global Initializers',
    6464          'action': [
    65             'sh', '<(DEPTH)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-global-initializers'
     65            'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-global-initializers'
    6666          ],
    6767        },
     
    6969          'postbuild_name': 'Check For Weak VTables and Externals',
    7070          'action': [
    71             'sh', '<(DEPTH)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-weak-vtables-and-externals'
     71            'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-weak-vtables-and-externals'
    7272          ],
    7373        },
     
    7575          'postbuild_name': 'Remove Headers If Needed',
    7676          'action': [
    77             'sh', '<(DEPTH)/gyp/remove-headers-if-needed.sh'
     77            'sh', '<(project_dir)/gyp/remove-headers-if-needed.sh'
    7878          ],
    7979        },
     
    100100         'outputs': [],
    101101         'action': [
    102            'sh', '<(DEPTH)/gyp/update-info-plist.sh', '<(project_dir)/Info.plist'
     102           'sh', '<(project_dir)/gyp/update-info-plist.sh', '<(project_dir)/Info.plist'
    103103          ]
    104104      }],
  • trunk/Source/JavaScriptGlue/gyp/remove-headers-if-needed.sh

    • Property svn:executable set to *
  • trunk/Source/JavaScriptGlue/gyp/run-if-exists.sh

    • Property svn:executable set to *
  • trunk/Source/WebCore/ChangeLog

    r81707 r81708  
     12011-03-22  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Make it possible to build JavaScriptCore and WebCore gyp builds outside of Source
     6        https://bugs.webkit.org/show_bug.cgi?id=56867
     7
     8        This should make it possible to build the gyp-generated WebCore.xcodeproj
     9        from a WebCore directory outside of Source.
     10
     11        * gyp/WebCore.gyp:
     12        * gyp/run-if-exists.sh: Added.
     13        * gyp/update-info-plist.sh: Added.
     14
    1152011-03-22  Anders Carlsson  <andersca@apple.com>
    216
  • trunk/Source/WebCore/gyp/WebCore.gyp

    r81706 r81708  
    170170          'postbuild_name': 'Check For Global Initializers',
    171171          'action': [
    172             'sh', '<(DEPTH)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-global-initializers'
     172            'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-global-initializers'
    173173          ],
    174174        },
     
    176176          'postbuild_name': 'Check For Exit Time Destructors',
    177177          'action': [
    178             'sh', '<(DEPTH)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-exit-time-destructors'
     178            'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-exit-time-destructors'
    179179          ],
    180180        },
     
    182182          'postbuild_name': 'Check For Weak VTables and Externals',
    183183          'action': [
    184             'sh', '<(DEPTH)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-weak-vtables-and-externals'
     184            'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-weak-vtables-and-externals'
    185185          ],
    186186        },
     
    188188          'postbuild_name': 'Check For Inappropriate Files in Framework',
    189189          'action': [
    190             'sh', '<(DEPTH)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-inappropriate-files-in-framework'
     190            'sh', '<(project_dir)/gyp/run-if-exists.sh', '<(DEPTH)/../Tools/Scripts/check-for-inappropriate-files-in-framework'
    191191          ],
    192192        },
     
    229229         'outputs': [],
    230230         'action': [
    231            'sh', '<(DEPTH)/gyp/update-info-plist.sh', '<(project_dir)/Info.plist'
     231           'sh', '<(project_dir)/gyp/update-info-plist.sh', '<(project_dir)/Info.plist'
    232232          ]
    233233      }],
  • trunk/Source/WebCore/gyp/run-if-exists.sh

    • Property svn:executable set to *
Note: See TracChangeset for help on using the changeset viewer.