Chromium Code Reviews| Index: tools/gyp/v8.gyp |
| =================================================================== |
| --- tools/gyp/v8.gyp (revision 6379) |
| +++ tools/gyp/v8.gyp (working copy) |
| @@ -32,6 +32,7 @@ |
| 'gcc_version%': 'unknown', |
| 'v8_target_arch%': '<(target_arch)', |
| 'v8_use_snapshot%': 'true', |
| + 'v8_use_liveobjectlist%': 'false', |
| }, |
| 'conditions': [ |
| ['use_system_v8==0', { |
| @@ -66,6 +67,14 @@ |
| }], |
| ], |
| }], |
| + ['v8_use_liveobjectlist=="true"', { |
| + 'defines': [ |
| + 'ENABLE_DEBUGGER_SUPPORT', |
| + 'INSPECTOR', |
| + 'OBJECT_PRINT', |
| + 'LIVEOBJECTLIST', |
| + ], |
| + }], |
| ], |
| 'configurations': { |
| 'Debug': { |
| @@ -417,6 +426,8 @@ |
| '../../src/ic-inl.h', |
| '../../src/ic.cc', |
| '../../src/ic.h', |
| + '../../src/inspector.cc', |
| + '../../src/inspector.h', |
| '../../src/interpreter-irregexp.cc', |
| '../../src/interpreter-irregexp.h', |
| '../../src/jump-target-inl.h', |
| @@ -432,6 +443,8 @@ |
| '../../src/lithium-allocator.h', |
| '../../src/liveedit.cc', |
| '../../src/liveedit.h', |
|
Søren Thygesen Gjesse
2011/01/19 09:09:47
Please add '../../src/liveobjectlist-inl.h' here a
marklam
2011/01/19 09:43:22
Done.
|
| + '../../src/liveobjectlist.cc', |
| + '../../src/liveobjectlist.h', |
| '../../src/log-inl.h', |
| '../../src/log-utils.cc', |
| '../../src/log-utils.h', |