| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 'webaccessibility.cc', | 396 'webaccessibility.cc', |
| 397 'webaccessibility.h', | 397 'webaccessibility.h', |
| 398 'webclipboard_impl.cc', | 398 'webclipboard_impl.cc', |
| 399 'webclipboard_impl.h', | 399 'webclipboard_impl.h', |
| 400 'webcookie.cc', | 400 'webcookie.cc', |
| 401 'webcookie.h', | 401 'webcookie.h', |
| 402 'webcursor.cc', | 402 'webcursor.cc', |
| 403 'webcursor.h', | 403 'webcursor.h', |
| 404 'webcursor_android.cc', | 404 'webcursor_android.cc', |
| 405 'webcursor_aura.cc', | 405 'webcursor_aura.cc', |
| 406 'webcursor_aurawin.cc', |
| 407 'webcursor_aurax11.cc', |
| 406 'webcursor_gtk.cc', | 408 'webcursor_gtk.cc', |
| 407 'webcursor_gtk_data.h', | 409 'webcursor_gtk_data.h', |
| 408 'webcursor_mac.mm', | 410 'webcursor_mac.mm', |
| 409 'webcursor_win.cc', | 411 'webcursor_win.cc', |
| 410 'webdropdata.cc', | 412 'webdropdata.cc', |
| 411 'webdropdata_win.cc', | 413 'webdropdata_win.cc', |
| 412 'webdropdata.h', | 414 'webdropdata.h', |
| 413 'webfileutilities_impl.cc', | 415 'webfileutilities_impl.cc', |
| 414 'webfileutilities_impl.h', | 416 'webfileutilities_impl.h', |
| 415 'webkit_constants.h', | 417 'webkit_constants.h', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 ['use_aura==1', { | 496 ['use_aura==1', { |
| 495 'sources/': [ | 497 'sources/': [ |
| 496 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_mac.mm'], | 498 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_mac.mm'], |
| 497 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_win.cc'], | 499 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_win.cc'], |
| 498 ], | 500 ], |
| 499 'sources!': [ | 501 'sources!': [ |
| 500 'webcursor_mac.mm', | 502 'webcursor_mac.mm', |
| 501 'webcursor_win.cc', | 503 'webcursor_win.cc', |
| 502 ], | 504 ], |
| 503 }], | 505 }], |
| 506 ['use_aura==1 and use_x11==1', { |
| 507 'link_settings': { |
| 508 'libraries': [ '-lXcursor', ], |
| 509 }, |
| 510 }], |
| 504 ['OS!="mac"', { | 511 ['OS!="mac"', { |
| 505 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 512 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
| 506 'sources!': [ | 513 'sources!': [ |
| 507 'webthemeengine_impl_mac.cc', | 514 'webthemeengine_impl_mac.cc', |
| 508 ], | 515 ], |
| 509 }, { # else: OS=="mac" | 516 }, { # else: OS=="mac" |
| 510 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], | 517 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], |
| 511 'link_settings': { | 518 'link_settings': { |
| 512 'libraries': [ | 519 'libraries': [ |
| 513 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 520 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 }, | 584 }, |
| 578 'includes': [ '../../build/grit_action.gypi' ], | 585 'includes': [ '../../build/grit_action.gypi' ], |
| 579 }, | 586 }, |
| 580 ], | 587 ], |
| 581 'includes': [ '../../build/grit_target.gypi' ], | 588 'includes': [ '../../build/grit_target.gypi' ], |
| 582 }, | 589 }, |
| 583 ], | 590 ], |
| 584 }], | 591 }], |
| 585 ], | 592 ], |
| 586 } | 593 } |
| OLD | NEW |