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

Unified Diff: views/views.gyp

Issue 7741001: Add Aura support to views: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « views/native_types.h ('k') | views/widget/default_theme_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/views.gyp
===================================================================
--- views/views.gyp (revision 98084)
+++ views/views.gyp (working copy)
@@ -20,6 +20,11 @@
['exclude', '_(touch)\\.cc$'],
],
}],
+ ['use_aura==1', {
+ 'sources/': [ ['exclude', '_win\\.(h|cc)$'],
+ ['exclude', '_gtk\\.(h|cc)$'],
+ ['exclude', '_x\\.(h|cc)$'] ],
+ }],
],
},
'targets': [
@@ -226,6 +231,7 @@
'drag_utils_win.cc',
'events/event.cc',
'events/event.h',
+ 'events/event_aura.cc',
'events/event_gtk.cc',
'events/event_win.cc',
'events/event_utils_win.cc',
@@ -338,6 +344,8 @@
'widget/monitor_win.cc',
'widget/monitor_win.h',
'widget/native_widget.h',
+ 'widget/native_widget_aura.cc',
+ 'widget/native_widget_aura.h',
'widget/native_widget_delegate.h',
'widget/native_widget_private.h',
'widget/native_widget_gtk.cc',
@@ -374,6 +382,17 @@
'<(DEPTH)/third_party/wtl/include',
],
'conditions': [
+ ['use_aura==1', {
+ 'dependencies': [
+ '../aura/aura.gyp:aura',
+ ],
+ 'sources!': [
+ 'controls/native_control.cc',
+ 'widget/aero_tooltip_manager.cc',
+ 'widget/child_window_message_processor.cc',
+ 'widget/child_window_message_processor.h',
+ ],
+ }],
['toolkit_uses_gtk == 1', {
'dependencies': [
'../build/linux/system.gyp:gtk',
« no previous file with comments | « views/native_types.h ('k') | views/widget/default_theme_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698