Chromium Code Reviews| Index: Source/modules/modules.gyp |
| diff --git a/Source/modules/modules.gyp b/Source/modules/modules.gyp |
| index b62845645e3078084ca66568ef6e55539d824f71..6edbcdd7ba1c3e96274fc2218e9d75919d0e0a7f 100644 |
| --- a/Source/modules/modules.gyp |
| +++ b/Source/modules/modules.gyp |
| @@ -32,22 +32,42 @@ |
| '../build/win/precompile.gypi', |
| 'modules.gypi', |
| ], |
| - 'targets': [{ |
| - 'target_name': 'modules', |
| - 'type': 'static_library', |
| - 'dependencies': [ |
| - '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
| - '../config.gyp:config', |
| - '../core/core.gyp:webcore', |
| - ], |
| - 'defines': [ |
| - 'WEBKIT_IMPLEMENTATION=1', |
| - 'INSIDE_WEBKIT', |
| - ], |
| - 'sources': [ |
| - '<@(modules_files)', |
| - ], |
| - # Disable c4267 warnings until we fix size_t to int truncations. |
| - 'msvs_disabled_warnings': [ 4267, 4334, ] |
| - }], |
| + 'targets': [ |
| + { |
| + 'target_name': 'modules', |
| + 'type': 'static_library', |
| + 'dependencies': [ |
| + '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
| + '../config.gyp:config', |
| + '../core/core.gyp:webcore', |
| + ], |
| + 'defines': [ |
| + 'WEBKIT_IMPLEMENTATION=1', |
| + 'INSIDE_WEBKIT', |
| + ], |
| + 'sources': [ |
| + '<@(modules_files)', |
| + ], |
| + # Disable c4267 warnings until we fix size_t to int truncations. |
| + 'msvs_disabled_warnings': [ 4267, 4334, ] |
| + }, |
| + { |
| + 'target_name': 'modules_test_support', |
| + 'type': 'static_library', |
| + 'dependencies': [ |
| + '../config.gyp:config', |
| + '../core/core.gyp:webcore', |
| + ], |
| + 'defines': [ |
| + 'WEBKIT_IMPLEMENTATION=1', |
| + 'INSIDE_WEBKIT', |
| + ], |
| + 'include_dirs': [ |
|
tkent
2013/08/28 03:58:07
Is it necessary?
kihong
2013/08/28 05:25:25
I don't think so, it's eliminated.
|
| + 'testing', |
| + ], |
| + 'sources': [ |
| + '<@(modules_test_support_files)', |
| + ], |
| + }, |
| + ], # targets |
| } |