| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2011 Google Inc. All rights reserved. | 2 # Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 ], | 71 ], |
| 72 'sources': [ | 72 'sources': [ |
| 73 '<@(webcore_platform_support_files)', | 73 '<@(webcore_platform_support_files)', |
| 74 '<@(web_files)', | 74 '<@(web_files)', |
| 75 ], | 75 ], |
| 76 'conditions': [ | 76 'conditions': [ |
| 77 ['component=="shared_library"', { | 77 ['component=="shared_library"', { |
| 78 'dependencies': [ | 78 'dependencies': [ |
| 79 '../core/core.gyp:webcore_derived', | 79 '../core/core.gyp:webcore_derived', |
| 80 '../core/core.gyp:webcore_test_support', | 80 '../core/core.gyp:webcore_test_support', |
| 81 '../modules/modules.gyp:modules_test_support', |
| 81 '<(DEPTH)/base/base.gyp:test_support_base', | 82 '<(DEPTH)/base/base.gyp:test_support_base', |
| 82 '<(DEPTH)/testing/gmock.gyp:gmock', | 83 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 83 '<(DEPTH)/testing/gtest.gyp:gtest', | 84 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 84 '<(DEPTH)/third_party/icu/icu.gyp:*', | 85 '<(DEPTH)/third_party/icu/icu.gyp:*', |
| 85 '<(libjpeg_gyp_path):libjpeg', | 86 '<(libjpeg_gyp_path):libjpeg', |
| 86 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', | 87 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', |
| 87 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp', | 88 '<(DEPTH)/third_party/libwebp/libwebp.gyp:libwebp', |
| 88 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', | 89 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', |
| 89 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt', | 90 '<(DEPTH)/third_party/libxslt/libxslt.gyp:libxslt', |
| 90 '<(DEPTH)/third_party/modp_b64/modp_b64.gyp:modp_b64', | 91 '<(DEPTH)/third_party/modp_b64/modp_b64.gyp:modp_b64', |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 }, | 239 }, |
| 239 { | 240 { |
| 240 'target_name': 'webkit_test_support', | 241 'target_name': 'webkit_test_support', |
| 241 'conditions': [ | 242 'conditions': [ |
| 242 ['component=="shared_library"', { | 243 ['component=="shared_library"', { |
| 243 'type': 'none', | 244 'type': 'none', |
| 244 }, { | 245 }, { |
| 245 'type': 'static_library', | 246 'type': 'static_library', |
| 246 'dependencies': [ | 247 'dependencies': [ |
| 247 '../core/core.gyp:webcore_test_support', | 248 '../core/core.gyp:webcore_test_support', |
| 249 '../modules/modules.gyp:modules_test_support', |
| 248 '../wtf/wtf.gyp:wtf', | 250 '../wtf/wtf.gyp:wtf', |
| 249 '<(DEPTH)/skia/skia.gyp:skia', | 251 '<(DEPTH)/skia/skia.gyp:skia', |
| 250 ], | 252 ], |
| 251 'include_dirs': [ | 253 'include_dirs': [ |
| 252 '../../public/web', | 254 '../../public/web', |
| 253 '../core/testing/v8', # for WebCoreTestSupport.h, needed
to link in window.internals code. | 255 '../core/testing/v8', # for WebCoreTestSupport.h, needed
to link in window.internals code. |
| 254 '../../', | 256 '../../', |
| 255 ], | 257 ], |
| 256 'sources': [ | 258 'sources': [ |
| 257 'WebTestingSupport.cpp', | 259 'WebTestingSupport.cpp', |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 ['clang==1', { | 313 ['clang==1', { |
| 312 'target_defaults': { | 314 'target_defaults': { |
| 313 'cflags': ['-Wglobal-constructors'], | 315 'cflags': ['-Wglobal-constructors'], |
| 314 'xcode_settings': { | 316 'xcode_settings': { |
| 315 'WARNING_CFLAGS': ['-Wglobal-constructors'], | 317 'WARNING_CFLAGS': ['-Wglobal-constructors'], |
| 316 }, | 318 }, |
| 317 }, | 319 }, |
| 318 }], | 320 }], |
| 319 ], # conditions | 321 ], # conditions |
| 320 } | 322 } |
| OLD | NEW |