| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['inside_chromium_build==0', { | 8 ['inside_chromium_build==0', { |
| 9 'webkit_src_dir': '../../../..', | 9 'webkit_src_dir': '../../../..', |
| 10 },{ | 10 },{ |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 }, | 325 }, |
| 326 }], | 326 }], |
| 327 ['enable_gpu==1 and inside_chromium_build==1', { | 327 ['enable_gpu==1 and inside_chromium_build==1', { |
| 328 'dependencies': [ | 328 'dependencies': [ |
| 329 '<(DEPTH)/gpu/gpu.gyp:gpu_plugin', | 329 '<(DEPTH)/gpu/gpu.gyp:gpu_plugin', |
| 330 ], | 330 ], |
| 331 }], | 331 }], |
| 332 ['OS!="win"', { | 332 ['OS!="win"', { |
| 333 'sources/': [['exclude', '_win\\.cc$']], | 333 'sources/': [['exclude', '_win\\.cc$']], |
| 334 'sources!': [ | 334 'sources!': [ |
| 335 # These files are Windows-only now but may be ported to other |
| 336 # platforms. |
| 337 'webaccessibility.cc', |
| 338 'webaccessibility.h', |
| 335 'webthemeengine_impl_win.cc', | 339 'webthemeengine_impl_win.cc', |
| 336 ], | 340 ], |
| 337 }, { # else: OS=="win" | 341 }, { # else: OS=="win" |
| 338 'sources/': [['exclude', '_posix\\.cc$']], | 342 'sources/': [['exclude', '_posix\\.cc$']], |
| 339 'include_dirs': [ | 343 'include_dirs': [ |
| 340 '<(DEPTH)/third_party/wtl/include', | 344 '<(DEPTH)/third_party/wtl/include', |
| 341 ], | 345 ], |
| 342 'dependencies': [ | 346 'dependencies': [ |
| 343 '<(DEPTH)/build/win/system.gyp:cygwin', | 347 '<(DEPTH)/build/win/system.gyp:cygwin', |
| 344 ], | 348 ], |
| 345 'sources!': [ | 349 'sources!': [ |
| 346 'plugins/plugin_stubs.cc', | 350 'plugins/plugin_stubs.cc', |
| 347 ], | 351 ], |
| 348 }], | 352 }], |
| 349 ['inside_chromium_build==1 and OS=="win"', { | 353 ['inside_chromium_build==1 and OS=="win"', { |
| 350 'dependencies': [ | 354 'dependencies': [ |
| 351 '<(DEPTH)/webkit/default_plugin/default_plugin.gyp:default_plugin', | 355 '<(DEPTH)/webkit/default_plugin/default_plugin.gyp:default_plugin', |
| 352 ], | 356 ], |
| 353 }], | 357 }], |
| 354 ['inside_chromium_build==0', { | 358 ['inside_chromium_build==0', { |
| 355 'dependencies': [ | 359 'dependencies': [ |
| 356 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 360 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 357 ], | 361 ], |
| 358 }], | 362 }], |
| 359 ], | 363 ], |
| 360 }, | 364 }, |
| 361 ], | 365 ], |
| 362 } | 366 } |
| OLD | NEW |