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

Side by Side Diff: ui/ui.gyp

Issue 8450018: First shot at implementing drag&drop for Aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor changes Created 9 years, 1 month 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) 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 'base/dragdrop/drag_drop_types_win.cc', 85 'base/dragdrop/drag_drop_types_win.cc',
86 'base/dragdrop/drag_source.cc', 86 'base/dragdrop/drag_source.cc',
87 'base/dragdrop/drag_source.h', 87 'base/dragdrop/drag_source.h',
88 'base/dragdrop/drop_target.cc', 88 'base/dragdrop/drop_target.cc',
89 'base/dragdrop/drop_target.h', 89 'base/dragdrop/drop_target.h',
90 'base/dragdrop/gtk_dnd_util.cc', 90 'base/dragdrop/gtk_dnd_util.cc',
91 'base/dragdrop/gtk_dnd_util.h', 91 'base/dragdrop/gtk_dnd_util.h',
92 'base/dragdrop/os_exchange_data.cc', 92 'base/dragdrop/os_exchange_data.cc',
93 'base/dragdrop/os_exchange_data.h', 93 'base/dragdrop/os_exchange_data.h',
94 'base/dragdrop/os_exchange_data_provider_aura.cc', 94 'base/dragdrop/os_exchange_data_provider_aura.cc',
95 'base/dragdrop/os_exchange_data_provider_aura.h',
95 'base/dragdrop/os_exchange_data_provider_gtk.cc', 96 'base/dragdrop/os_exchange_data_provider_gtk.cc',
96 'base/dragdrop/os_exchange_data_provider_gtk.h', 97 'base/dragdrop/os_exchange_data_provider_gtk.h',
97 'base/dragdrop/os_exchange_data_provider_win.cc', 98 'base/dragdrop/os_exchange_data_provider_win.cc',
98 'base/dragdrop/os_exchange_data_provider_win.h', 99 'base/dragdrop/os_exchange_data_provider_win.h',
99 'base/events.h', 100 'base/events.h',
100 'base/gtk/event_synthesis_gtk.cc', 101 'base/gtk/event_synthesis_gtk.cc',
101 'base/gtk/event_synthesis_gtk.h', 102 'base/gtk/event_synthesis_gtk.h',
102 'base/gtk/g_object_destructor_filo.cc', 103 'base/gtk/g_object_destructor_filo.cc',
103 'base/gtk/g_object_destructor_filo.h', 104 'base/gtk/g_object_destructor_filo.h',
104 'base/gtk/gtk_expanded_container.cc', 105 'base/gtk/gtk_expanded_container.cc',
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 ], 331 ],
331 }, { # use_aura!=1 332 }, { # use_aura!=1
332 'sources!': [ 333 'sources!': [
333 'gfx/native_theme_aura.cc', 334 'gfx/native_theme_aura.cc',
334 'gfx/native_theme_aura.h', 335 'gfx/native_theme_aura.h',
335 ] 336 ]
336 }], 337 }],
337 ['use_aura==1 and OS=="win"', { 338 ['use_aura==1 and OS=="win"', {
338 'sources/': [ 339 'sources/': [
339 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.cc'], 340 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.cc'],
341 ['exclude', 'base/dragdrop/os_exchange_data_provider_aura.h'],
340 ['exclude', 'gfx/native_theme_win.cc'], 342 ['exclude', 'gfx/native_theme_win.cc'],
341 ['exclude', 'gfx/native_theme_win.h'], 343 ['exclude', 'gfx/native_theme_win.h'],
342 ['exclude', 'gfx/path_win.cc'], 344 ['exclude', 'gfx/path_win.cc'],
343 ], 345 ],
344 }], 346 }],
345 ['use_glib == 1', { 347 ['use_glib == 1', {
346 'dependencies': [ 348 'dependencies': [
347 # font_gtk.cc uses fontconfig. 349 # font_gtk.cc uses fontconfig.
348 '../build/linux/system.gyp:fontconfig', 350 '../build/linux/system.gyp:fontconfig',
349 '../build/linux/system.gyp:glib', 351 '../build/linux/system.gyp:glib',
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 609 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
608 'os.chmod(\'<(ui_copy_dest)\', 0700)' 610 'os.chmod(\'<(ui_copy_dest)\', 0700)'
609 ] 611 ]
610 } 612 }
611 ], 613 ],
612 }, 614 },
613 ], 615 ],
614 }], 616 }],
615 ], 617 ],
616 } 618 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698