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

Unified Diff: views/views.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 side-by-side diff with in-line comments
Download patch
Index: views/views.gyp
diff --git a/views/views.gyp b/views/views.gyp
index 19b1e4a068bcd6f71bff2d13d5687b88bffa324e..2685cdfb75adf513ded564dd6ed30b85af93aabb 100644
--- a/views/views.gyp
+++ b/views/views.gyp
@@ -258,6 +258,7 @@
'drag_controller.h',
'drag_utils.cc',
'drag_utils.h',
+ 'drag_utils_aura.cc',
'drag_utils_gtk.cc',
'drag_utils_linux.cc',
'drag_utils_win.cc',
@@ -437,6 +438,7 @@
['exclude', 'controls/menu/menu_2.*'],
],
'sources!': [
+ 'drag_utils_linux.cc',
'controls/menu/menu_config_linux.cc',
'controls/menu/menu_item_view_linux.cc',
'controls/menu/menu_separator_linux.cc',
@@ -466,14 +468,12 @@
['OS=="win"', {
'sources/': [
['include', 'drag_utils_win.cc'],
+ ['exclude', 'drag_utils_aura.cc'],
Ben Goodger (Google) 2011/11/16 00:13:20 seems like we want to build this on win too when a
varunjain 2011/11/16 20:30:15 Done.
],
}],
],
- }, { # else: use_aura==1
- 'sources!': [
- 'drag_utils_linux.cc',
- ]
- }],
+ },
+ ],
['toolkit_uses_gtk == 1', {
'dependencies': [
'../build/linux/system.gyp:gtk',

Powered by Google App Engine
This is Rietveld 408576698