+2011-03-21 Adam Barth <abarth@webkit.org>
+
+ Reviewed by Eric Seidel.
+
+ GYP build should not have include paths that point within the source tree
+ https://bugs.webkit.org/show_bug.cgi?id=56788
+
+ Turns out we don't need these include paths anymore now that we have
+ header maps working properly.
+
+ * gyp/JavaScriptCore.gyp:
+ - Also, remove jsc.cpp from the excluded list because it's not part
+ of the jsc_files variable instead of the javascriptcore_files
+ variable.
+
2011-03-21 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
'variables': {
# FIXME: We should use a header map instead of listing these explicitly.
'javascriptcore_include_dirs': [
- '<(DEPTH)', # Some paths in API include JavaScriptCore/
'<(project_dir)',
- '<(project_dir)/ForwardingHeaders',
- '<(project_dir)/API',
- '<(project_dir)/assembler',
- '<(project_dir)/collector/handles',
- '<(project_dir)/bytecode',
- '<(project_dir)/bytecompiler',
- '<(project_dir)/debugger',
'<(project_dir)/icu',
- '<(project_dir)/interpreter',
- '<(project_dir)/jit',
- '<(project_dir)/parser',
- '<(project_dir)/profiler',
- '<(project_dir)/runtime',
- '<(project_dir)/wtf',
- '<(project_dir)/wtf/unicode',
- '<(SHARED_INTERMEDIATE_DIR)',
],
'derived_source_files': [
'<(SHARED_INTERMEDIATE_DIR)/ArrayPrototype.lut.h',
['exclude', '(Default|Gtk|Chromium|None|Qt|Win|Wx|Symbian)\\.(cpp|mm|h)$'],
['exclude', 'GCActivityCallback\.cpp'],
['exclude', '.*BSTR.*$'],
- ['exclude', 'jsc.cpp$'],
],
'postbuilds': [
{
+2011-03-21 Adam Barth <abarth@webkit.org>
+
+ Reviewed by Eric Seidel.
+
+ GYP build should not have include paths that point within the source tree
+ https://bugs.webkit.org/show_bug.cgi?id=56788
+
+ Turns out we don't need these include paths anymore now that we have
+ header maps working properly.
+
+ * gyp/JavaScriptGlue.gyp:
+
2011-03-20 Bill Budge <bbudge@chromium.org>
Reviewed by Adam Barth.