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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
464 'dependencies': [ | 464 'dependencies': [ |
465 '<(DEPTH)/build/linux/system.gyp:gtk', | 465 '<(DEPTH)/build/linux/system.gyp:gtk', |
466 ], | 466 ], |
467 'sources/': [['exclude', '_x11\\.cc$']], | 467 'sources/': [['exclude', '_x11\\.cc$']], |
468 'sources!': [ | 468 'sources!': [ |
469 'plugins/plugin_stubs.cc', | 469 'plugins/plugin_stubs.cc', |
470 ], | 470 ], |
471 }], | 471 }], |
472 ['use_aura==1', { | 472 ['use_aura==1', { |
473 'sources/': [ | 473 'sources/': [ |
474 ['exclude', '^../plugins/npapi/webplugin_delegate_impl_mac.mm'], | |
tony
2011/11/18 18:50:10
Nit: This is a regex so the . will match any char.
dhollowa
2011/11/19 02:12:52
Done.
| |
474 ['exclude', '^../plugins/npapi/webplugin_delegate_impl_win.cc'], | 475 ['exclude', '^../plugins/npapi/webplugin_delegate_impl_win.cc'], |
475 ], | 476 ], |
476 'sources!': [ | 477 'sources!': [ |
478 'webcursor_mac.mm', | |
477 'webcursor_win.cc', | 479 'webcursor_win.cc', |
478 ], | 480 ], |
479 }], | 481 }], |
480 ['OS!="mac"', { | 482 ['OS!="mac"', { |
481 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 483 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
482 'sources!': [ | 484 'sources!': [ |
483 'webthemeengine_impl_mac.cc', | 485 'webthemeengine_impl_mac.cc', |
484 ], | 486 ], |
485 }, { # else: OS=="mac" | 487 }, { # else: OS=="mac" |
486 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], | 488 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
556 }, | 558 }, |
557 'includes': [ '../../build/grit_action.gypi' ], | 559 'includes': [ '../../build/grit_action.gypi' ], |
558 }, | 560 }, |
559 ], | 561 ], |
560 'includes': [ '../../build/grit_target.gypi' ], | 562 'includes': [ '../../build/grit_target.gypi' ], |
561 }, | 563 }, |
562 ], | 564 ], |
563 }], | 565 }], |
564 ], | 566 ], |
565 } | 567 } |
OLD | NEW |