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

Side by Side Diff: ui/ui.gyp

Issue 10316019: Aura: Adds custom cursors for drag and drop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch Created 8 years, 7 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'ui_resources.gypi', 10 'ui_resources.gypi',
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 # font_gtk.cc uses fontconfig. 484 # font_gtk.cc uses fontconfig.
485 '../build/linux/system.gyp:fontconfig', 485 '../build/linux/system.gyp:fontconfig',
486 '../build/linux/system.gyp:glib', 486 '../build/linux/system.gyp:glib',
487 '../build/linux/system.gyp:pangocairo', 487 '../build/linux/system.gyp:pangocairo',
488 '../build/linux/system.gyp:x11', 488 '../build/linux/system.gyp:x11',
489 '../build/linux/system.gyp:xext', 489 '../build/linux/system.gyp:xext',
490 '../build/linux/system.gyp:xfixes', 490 '../build/linux/system.gyp:xfixes',
491 ], 491 ],
492 'link_settings': { 492 'link_settings': {
493 'libraries': [ 493 'libraries': [
494 '-lXcursor', # For XCursor* function calls in x11_util.cc.
494 '-lXrender', # For XRender* function calls in x11_util.cc. 495 '-lXrender', # For XRender* function calls in x11_util.cc.
495 ], 496 ],
496 }, 497 },
497 'conditions': [ 498 'conditions': [
498 ['toolkit_views==0', { 499 ['toolkit_views==0', {
499 # Note: because of gyp predence rules this has to be defined as 500 # Note: because of gyp predence rules this has to be defined as
500 # 'sources/' rather than 'sources!'. 501 # 'sources/' rather than 'sources!'.
501 'sources/': [ 502 'sources/': [
502 ['exclude', '^base/dragdrop/drag_drop_types_gtk.cc'], 503 ['exclude', '^base/dragdrop/drag_drop_types_gtk.cc'],
503 ['exclude', '^base/dragdrop/drag_utils_gtk.cc'], 504 ['exclude', '^base/dragdrop/drag_utils_gtk.cc'],
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 742 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
742 'os.chmod(\'<(ui_copy_dest)\', 0700)' 743 'os.chmod(\'<(ui_copy_dest)\', 0700)'
743 ] 744 ]
744 } 745 }
745 ], 746 ],
746 }, 747 },
747 ], 748 ],
748 }], 749 }],
749 ], 750 ],
750 } 751 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698