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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 ], | 235 ], |
236 }, | 236 }, |
237 { | 237 { |
238 'target_name': 'webkit_test_support', | 238 'target_name': 'webkit_test_support', |
239 'conditions': [ | 239 'conditions': [ |
240 ['component=="shared_library"', { | 240 ['component=="shared_library"', { |
241 'type': 'none', | 241 'type': 'none', |
242 }, { | 242 }, { |
243 'type': 'static_library', | 243 'type': 'static_library', |
244 'dependencies': [ | 244 'dependencies': [ |
| 245 '../../core/core.gyp:webcore_test_support', |
245 '../../wtf/wtf.gyp:wtf', | 246 '../../wtf/wtf.gyp:wtf', |
246 '../../core/core.gyp:webcore_test_support', | 247 '<(DEPTH)/skia/skia.gyp:skia', |
247 ], | 248 ], |
248 'include_dirs': [ | 249 'include_dirs': [ |
249 '../../../public/web', | 250 '../../../public/web', |
250 '../../core/testing/v8', # for WebCoreTestSupport.h, nee
ded to link in window.internals code. | 251 '../../core/testing/v8', # for WebCoreTestSupport.h, nee
ded to link in window.internals code. |
251 '../../../', | 252 '../../../', |
252 ], | 253 ], |
253 'sources': [ | 254 'sources': [ |
254 '../../web/WebTestingSupport.cpp', | 255 '../../web/WebTestingSupport.cpp', |
255 ], | 256 ], |
256 }], | 257 }], |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 ['clang==1', { | 309 ['clang==1', { |
309 'target_defaults': { | 310 'target_defaults': { |
310 'cflags': ['-Wglobal-constructors'], | 311 'cflags': ['-Wglobal-constructors'], |
311 'xcode_settings': { | 312 'xcode_settings': { |
312 'WARNING_CFLAGS': ['-Wglobal-constructors'], | 313 'WARNING_CFLAGS': ['-Wglobal-constructors'], |
313 }, | 314 }, |
314 }, | 315 }, |
315 }], | 316 }], |
316 ], # conditions | 317 ], # conditions |
317 } | 318 } |
OLD | NEW |