Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Side by Side Diff: webkit/glue/webkit_glue.gypi

Issue 9463003: aura-x11: Add custom web cursor support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 'webaccessibility.cc', 385 'webaccessibility.cc',
386 'webaccessibility.h', 386 'webaccessibility.h',
387 'webclipboard_impl.cc', 387 'webclipboard_impl.cc',
388 'webclipboard_impl.h', 388 'webclipboard_impl.h',
389 'webcookie.cc', 389 'webcookie.cc',
390 'webcookie.h', 390 'webcookie.h',
391 'webcursor.cc', 391 'webcursor.cc',
392 'webcursor.h', 392 'webcursor.h',
393 'webcursor_android.cc', 393 'webcursor_android.cc',
394 'webcursor_aura.cc', 394 'webcursor_aura.cc',
395 'webcursor_aurawin.cc',
396 'webcursor_aurax11.cc',
395 'webcursor_gtk.cc', 397 'webcursor_gtk.cc',
396 'webcursor_gtk_data.h', 398 'webcursor_gtk_data.h',
397 'webcursor_mac.mm', 399 'webcursor_mac.mm',
398 'webcursor_win.cc', 400 'webcursor_win.cc',
399 'webdropdata.cc', 401 'webdropdata.cc',
400 'webdropdata_win.cc', 402 'webdropdata_win.cc',
401 'webdropdata.h', 403 'webdropdata.h',
402 'webfileutilities_impl.cc', 404 'webfileutilities_impl.cc',
403 'webfileutilities_impl.h', 405 'webfileutilities_impl.h',
404 'webkit_constants.h', 406 'webkit_constants.h',
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 ['use_aura==1', { 483 ['use_aura==1', {
482 'sources/': [ 484 'sources/': [
483 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_mac.mm'], 485 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_mac.mm'],
484 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_win.cc'], 486 ['exclude', '^\\.\\./plugins/npapi/webplugin_delegate_impl_win.cc'],
485 ], 487 ],
486 'sources!': [ 488 'sources!': [
487 'webcursor_mac.mm', 489 'webcursor_mac.mm',
488 'webcursor_win.cc', 490 'webcursor_win.cc',
489 ], 491 ],
490 }], 492 }],
493 ['use_aura==1 and use_x11==1', {
494 'link_settings': {
495 'libraries': [ '-lXcursor', ],
496 },
497 }],
491 ['OS!="mac"', { 498 ['OS!="mac"', {
492 'sources/': [['exclude', '_mac\\.(cc|mm)$']], 499 'sources/': [['exclude', '_mac\\.(cc|mm)$']],
493 'sources!': [ 500 'sources!': [
494 'webthemeengine_impl_mac.cc', 501 'webthemeengine_impl_mac.cc',
495 ], 502 ],
496 }, { # else: OS=="mac" 503 }, { # else: OS=="mac"
497 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']], 504 'sources/': [['exclude', 'plugin_(lib|list)_posix\\.cc$']],
498 'link_settings': { 505 'link_settings': {
499 'libraries': [ 506 'libraries': [
500 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 507 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 }, 571 },
565 'includes': [ '../../build/grit_action.gypi' ], 572 'includes': [ '../../build/grit_action.gypi' ],
566 }, 573 },
567 ], 574 ],
568 'includes': [ '../../build/grit_target.gypi' ], 575 'includes': [ '../../build/grit_target.gypi' ],
569 }, 576 },
570 ], 577 ],
571 }], 578 }],
572 ], 579 ],
573 } 580 }
OLDNEW
« webkit/glue/webcursor_aurax11.cc ('K') | « webkit/glue/webcursor_aurax11.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698