Reviewers: Kasper Lund, Joel, Message: Sigh...
Description: Fix missing include directories in v8.gyp. Please review this at http://codereview.chromium.org/149331 Affected files: M tools/gyp/v8.gyp Index: tools/gyp/v8.gyp diff --git a/tools/gyp/v8.gyp b/tools/gyp/v8.gyp index 9d5b10f77b20f46b559f6c15a67ed751571a6173..8a5d053eccb994713fac4c0e7248b393f8269e17 100644 --- a/tools/gyp/v8.gyp +++ b/tools/gyp/v8.gyp @@ -152,6 +152,9 @@ 'js2c', 'v8_base', ], + 'include_dirs': [ + '../../src', + ], 'sources': [ '<(SHARED_INTERMEDIATE_DIR)/libraries-empty.cc', '<(INTERMEDIATE_DIR)/snapshot.cc', @@ -506,6 +509,9 @@ 'dependencies': [ 'v8_nosnapshot', ], + 'include_dirs': [ + '../../src', + ], 'sources': [ '../../src/mksnapshot.cc', ], --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
