Changeset 80312 in webkit


Ignore:
Timestamp:
Mar 3, 2011 8:09:36 PM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-03-03 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Teach JavaScriptCore GYP build about private headers
https://bugs.webkit.org/show_bug.cgi?id=55532

This patch distinguishes between public and private framework headers
so that public headers are copied into the Headers directory and
private headers are copied into the PrivateHeaders directory.

  • gyp/JavaScriptCore.gyp:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r80303 r80312  
     12011-03-03  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Teach JavaScriptCore GYP build about private headers
     6        https://bugs.webkit.org/show_bug.cgi?id=55532
     7
     8        This patch distinguishes between public and private framework headers
     9        so that public headers are copied into the Headers directory and
     10        private headers are copied into the PrivateHeaders directory.
     11
     12        * gyp/JavaScriptCore.gyp:
     13
    1142011-03-03  Geoffrey Garen  <ggaren@apple.com>
    215
  • trunk/Source/JavaScriptCore/gyp/JavaScriptCore.gyp

    r80100 r80312  
    5050      'mac_framework_headers': [
    5151        '<@(javascriptcore_publicheader_files)',
    52         '<@(javascriptcore_privateheader_files)', # FIXME: These should be private headers.
     52      ],
     53      'mac_framework_private_headers': [
     54        '<@(javascriptcore_privateheader_files)',
    5355      ],
    5456      'xcode_config_file': '<(DEPTH)/JavaScriptCore/Configurations/JavaScriptCore.xcconfig',
Note: See TracChangeset for help on using the changeset viewer.