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