diff options
-rw-r--r-- | chrome/tools/build/win/language_dll.vsprops | 2 | ||||
-rw-r--r-- | tools/grit/build/using_generated_resources.vsprops | 2 | ||||
-rw-r--r-- | webkit/tools/test_shell/test_shell.gyp | 12 |
3 files changed, 12 insertions, 4 deletions
diff --git a/chrome/tools/build/win/language_dll.vsprops b/chrome/tools/build/win/language_dll.vsprops index 69dfbcc..732537e 100644 --- a/chrome/tools/build/win/language_dll.vsprops +++ b/chrome/tools/build/win/language_dll.vsprops @@ -11,6 +11,6 @@ /> <Tool Name="VCResourceCompilerTool" - AdditionalIncludeDirectories="$(OutDir)\grit_derived_sources" + AdditionalIncludeDirectories="$(OutDir)\obj\global_intermediate\webkit;$(OutDir)\grit_derived_sources" /> </VisualStudioPropertySheet> diff --git a/tools/grit/build/using_generated_resources.vsprops b/tools/grit/build/using_generated_resources.vsprops index c7ba701..18d05aa 100644 --- a/tools/grit/build/using_generated_resources.vsprops +++ b/tools/grit/build/using_generated_resources.vsprops @@ -6,6 +6,6 @@ > <Tool Name="VCCLCompilerTool" - AdditionalIncludeDirectories=""$(OutDir)\grit_derived_sources";"$(SolutionDir)\$(configurationName)\grit_derived_sources";"$(OutDir)\obj\global_intermediate\net"" + AdditionalIncludeDirectories=""$(OutDir)\grit_derived_sources";"$(SolutionDir)\$(configurationName)\grit_derived_sources";"$(OutDir)\obj\global_intermediate\net";"$(OutDir)\obj\global_intermediate\webkit"" /> </VisualStudioPropertySheet> diff --git a/webkit/tools/test_shell/test_shell.gyp b/webkit/tools/test_shell/test_shell.gyp index baa8f6d..b398175 100644 --- a/webkit/tools/test_shell/test_shell.gyp +++ b/webkit/tools/test_shell/test_shell.gyp @@ -488,10 +488,10 @@ }, ], }], - # Need to do the same for Win and Linux. We build a separate dylib/dll/so + # Need to do the same for Linux. We build a separate dylib/dll/so # so V8 can have a second set of global variables and run workers. # Normally, workers run in a separate process. - ['OS=="mac"', { + ['OS!="linux"', { 'targets': [ { 'target_name': 'test_worker', @@ -499,6 +499,8 @@ 'xcode_settings': { 'EXPORTED_SYMBOLS_FILE': 'test_worker/test_worker.exp', }, + 'msvs_guid': '3E03D462-780D-4C4D-B22E-5E095E6CF110', + 'msvs_disabled_warnings': [4800], 'dependencies': [ '../../../base/base.gyp:base', '../../../base/base.gyp:base_gfx', @@ -512,6 +514,12 @@ 'sources': [ 'test_worker/test_webworker.cc', 'test_worker/test_worker_main.cc', + 'test_worker/test_worker.def', + ], + 'conditions': [ + ['OS!="win"', { + 'sources!' : ['test_worker/test_worker.def'], + }], ], }, ], |