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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 }, | 344 }, |
345 }], | 345 }], |
346 ['enable_gpu==1 and inside_chromium_build==1', { | 346 ['enable_gpu==1 and inside_chromium_build==1', { |
347 'dependencies': [ | 347 'dependencies': [ |
348 '<(DEPTH)/gpu/gpu.gyp:gpu_plugin', | 348 '<(DEPTH)/gpu/gpu.gyp:gpu_plugin', |
349 ], | 349 ], |
350 }], | 350 }], |
351 ['OS!="win"', { | 351 ['OS!="win"', { |
352 'sources/': [['exclude', '_win\\.cc$']], | 352 'sources/': [['exclude', '_win\\.cc$']], |
353 'sources!': [ | 353 'sources!': [ |
| 354 # These files are Windows-only now but may be ported to other |
| 355 # platforms. |
| 356 'webaccessibility.cc', |
| 357 'webaccessibility.h', |
354 'webthemeengine_impl_win.cc', | 358 'webthemeengine_impl_win.cc', |
355 ], | 359 ], |
356 }, { # else: OS=="win" | 360 }, { # else: OS=="win" |
357 'sources/': [['exclude', '_posix\\.cc$']], | 361 'sources/': [['exclude', '_posix\\.cc$']], |
358 'include_dirs': [ | 362 'include_dirs': [ |
359 '<(DEPTH)/third_party/wtl/include', | 363 '<(DEPTH)/third_party/wtl/include', |
360 ], | 364 ], |
361 'dependencies': [ | 365 'dependencies': [ |
362 '<(DEPTH)/build/win/system.gyp:cygwin', | 366 '<(DEPTH)/build/win/system.gyp:cygwin', |
363 ], | 367 ], |
364 'sources!': [ | 368 'sources!': [ |
365 'plugins/plugin_stubs.cc', | 369 'plugins/plugin_stubs.cc', |
366 ], | 370 ], |
367 }], | 371 }], |
368 ['inside_chromium_build==1 and OS=="win"', { | 372 ['inside_chromium_build==1 and OS=="win"', { |
369 'dependencies': [ | 373 'dependencies': [ |
370 '<(DEPTH)/webkit/default_plugin/default_plugin.gyp:default_plugin', | 374 '<(DEPTH)/webkit/default_plugin/default_plugin.gyp:default_plugin', |
371 ], | 375 ], |
372 }], | 376 }], |
373 ['inside_chromium_build==0', { | 377 ['inside_chromium_build==0', { |
374 'dependencies': [ | 378 'dependencies': [ |
375 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 379 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
376 ], | 380 ], |
377 }], | 381 }], |
378 ], | 382 ], |
379 }, | 383 }, |
380 ], | 384 ], |
381 } | 385 } |
OLD | NEW |