OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 'dependencies': [ | 454 'dependencies': [ |
455 '<(DEPTH)/build/linux/system.gyp:gtk', | 455 '<(DEPTH)/build/linux/system.gyp:gtk', |
456 ], | 456 ], |
457 'sources!': [ | 457 'sources!': [ |
458 'plugins/plugin_stubs.cc', | 458 'plugins/plugin_stubs.cc', |
459 ], | 459 ], |
460 }, { # else: toolkit_uses_gtk != 1 | 460 }, { # else: toolkit_uses_gtk != 1 |
461 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], | 461 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], |
462 ['exclude', r'/gtk_']], | 462 ['exclude', r'/gtk_']], |
463 }], | 463 }], |
| 464 ['use_aura==1', { |
| 465 'sources/': [ |
| 466 ['exclude', '^../plugins/npapi/webplugin_delegate_impl_win.cc'], |
| 467 ], |
| 468 }], |
464 ['OS!="mac"', { | 469 ['OS!="mac"', { |
465 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 470 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
466 'sources!': [ | 471 'sources!': [ |
467 'webthemeengine_impl_mac.cc', | 472 'webthemeengine_impl_mac.cc', |
468 ], | 473 ], |
469 }, { # else: OS=="mac" | 474 }, { # else: OS=="mac" |
470 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], | 475 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], |
471 'link_settings': { | 476 'link_settings': { |
472 'libraries': [ | 477 'libraries': [ |
473 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 478 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 }, | 545 }, |
541 'includes': [ '../../build/grit_action.gypi' ], | 546 'includes': [ '../../build/grit_action.gypi' ], |
542 }, | 547 }, |
543 ], | 548 ], |
544 'includes': [ '../../build/grit_target.gypi' ], | 549 'includes': [ '../../build/grit_target.gypi' ], |
545 }, | 550 }, |
546 ], | 551 ], |
547 }], | 552 }], |
548 ], | 553 ], |
549 } | 554 } |
OLD | NEW |