| Index: third_party/WebKit/Source/web/web_tests.gyp
|
| diff --git a/third_party/WebKit/Source/web/web_tests.gyp b/third_party/WebKit/Source/web/web_tests.gyp
|
| index c6906e08e40e6aba1d7b2eb1bebfdec044d06326..abe3a93c2c9beae67240bb4bd827e3ded3a455e0 100644
|
| --- a/third_party/WebKit/Source/web/web_tests.gyp
|
| +++ b/third_party/WebKit/Source/web/web_tests.gyp
|
| @@ -48,6 +48,7 @@
|
| 'dependencies': [
|
| '../../public/blink.gyp:blink',
|
| '../config.gyp:unittest_config',
|
| + '../modules/modules.gyp:modules',
|
| '../platform/blink_platform_tests.gyp:blink_platform_test_support',
|
| '../wtf/wtf.gyp:wtf',
|
| '../wtf/wtf_tests.gyp:wtf_unittest_helpers',
|
| @@ -65,27 +66,29 @@
|
| ],
|
| 'sources': [
|
| '../web/tests/RunAllTests.cpp',
|
| + '<@(bindings_unittest_files)',
|
| + '<@(core_unittest_files)',
|
| + '<@(modules_unittest_files)',
|
| + '<@(platform_web_unittest_files)',
|
| + '<@(web_unittest_files)',
|
| ],
|
| 'include_dirs': [
|
| '../../public/web',
|
| '../web',
|
| 'src',
|
| ],
|
| + 'defines': [
|
| + 'BLINK_IMPLEMENTATION=1',
|
| + 'INSIDE_BLINK',
|
| + ],
|
| 'conditions': [
|
| ['component!="shared_library"', {
|
| 'dependencies': [
|
| '../core/core.gyp:webcore',
|
| ],
|
| - 'defines': [
|
| - 'BLINK_IMPLEMENTATION=1',
|
| - 'INSIDE_BLINK',
|
| - ],
|
| - 'sources': [
|
| - '<@(bindings_unittest_files)',
|
| - '<@(core_unittest_files)',
|
| - '<@(modules_unittest_files)',
|
| - '<@(platform_web_unittest_files)',
|
| - '<@(web_unittest_files)',
|
| + }, {
|
| + 'dependencies': [
|
| + '../core/core.gyp:webcore_shared',
|
| ],
|
| }],
|
| ['OS=="win" and component!="shared_library"', {
|
|
|