OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 6 'includes': [ |
7 '../third_party/WebKit/WebKit/chromium/features.gypi', | 7 '../third_party/WebKit/WebKit/chromium/features.gypi', |
8 '../third_party/WebKit/WebCore/WebCore.gypi', | 8 '../third_party/WebKit/WebCore/WebCore.gypi', |
9 ], | 9 ], |
10 'variables': { | 10 'variables': { |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 '../base/base.gyp:linux_versioninfo', | 421 '../base/base.gyp:linux_versioninfo', |
422 ], | 422 ], |
423 'sources!': [ | 423 'sources!': [ |
424 'glue/plugins/plugin_stubs.cc', | 424 'glue/plugins/plugin_stubs.cc', |
425 ], | 425 ], |
426 }, { # else: OS!="linux" and OS!="freebsd" | 426 }, { # else: OS!="linux" and OS!="freebsd" |
427 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], | 427 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], |
428 ['exclude', r'/gtk_']], | 428 ['exclude', r'/gtk_']], |
429 }], | 429 }], |
430 ['OS!="mac"', { | 430 ['OS!="mac"', { |
431 'sources/': [['exclude', '_mac\\.(cc|mm)$']] | 431 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
| 432 }], |
| 433 ['OS=="win" or (OS=="linux" and target_arch!="arm")', { |
| 434 'dependencies': [ |
| 435 '../gpu/gpu.gyp:gpu_plugin', |
| 436 ], |
432 }], | 437 }], |
433 ['OS!="win"', { | 438 ['OS!="win"', { |
434 'sources/': [['exclude', '_win\\.cc$']], | 439 'sources/': [['exclude', '_win\\.cc$']], |
435 'sources!': [ | 440 'sources!': [ |
436 # These files are Windows-only now but may be ported to other | 441 # These files are Windows-only now but may be ported to other |
437 # platforms. | 442 # platforms. |
438 'glue/webaccessibility.cc', | 443 'glue/webaccessibility.cc', |
439 'glue/webaccessibility.h', | 444 'glue/webaccessibility.h', |
440 'glue/webthemeengine_impl_win.cc', | 445 'glue/webthemeengine_impl_win.cc', |
441 ], | 446 ], |
442 }, { # else: OS=="win" | 447 }, { # else: OS=="win" |
443 'sources/': [['exclude', '_posix\\.cc$']], | 448 'sources/': [['exclude', '_posix\\.cc$']], |
444 'include_dirs': [ | 449 'include_dirs': [ |
445 '../chrome/third_party/wtl/include', | 450 '../chrome/third_party/wtl/include', |
446 ], | 451 ], |
447 'dependencies': [ | 452 'dependencies': [ |
448 '../build/win/system.gyp:cygwin', | 453 '../build/win/system.gyp:cygwin', |
449 '../gpu/gpu.gyp:gpu_plugin', | |
450 'default_plugin/default_plugin.gyp:default_plugin', | 454 'default_plugin/default_plugin.gyp:default_plugin', |
451 ], | 455 ], |
452 'sources!': [ | 456 'sources!': [ |
453 'glue/plugins/plugin_stubs.cc', | 457 'glue/plugins/plugin_stubs.cc', |
454 ], | 458 ], |
455 }], | 459 }], |
456 ], | 460 ], |
457 }, | 461 }, |
458 { | 462 { |
459 'target_name': 'inspector_resources', | 463 'target_name': 'inspector_resources', |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 ], | 556 ], |
553 }, | 557 }, |
554 ], # targets | 558 ], # targets |
555 } | 559 } |
556 | 560 |
557 # Local Variables: | 561 # Local Variables: |
558 # tab-width:2 | 562 # tab-width:2 |
559 # indent-tabs-mode:nil | 563 # indent-tabs-mode:nil |
560 # End: | 564 # End: |
561 # vim: set expandtab tabstop=2 shiftwidth=2: | 565 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |