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

Unified Diff: build/common.gypi

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 | « no previous file | ui/gfx/native_widget_types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 98086)
+++ build/common.gypi (working copy)
@@ -44,7 +44,7 @@
'views_compositor%': 0,
# Whether or not we are building with the Aura window manager.
- 'aura_wm%': 0,
+ 'use_aura%': 0,
},
# Copy conditionally-set variables out one scope.
'chromeos%': '<(chromeos)',
@@ -52,7 +52,7 @@
'touchui%': '<(touchui)',
'webui_dialogs%': '<(webui_dialogs)',
'views_compositor%': '<(views_compositor)',
- 'aura_wm%': '<(aura_wm)',
+ 'use_aura%': '<(use_aura)',
# Compute the architecture that we're building on.
'conditions': [
@@ -87,7 +87,7 @@
}],
# Use the views compositor when using the Aura window manager.
- ['aura_wm==1', {
+ ['use_aura==1', {
'views_compositor%': 1,
}],
],
@@ -101,7 +101,7 @@
'toolkit_views%': '<(toolkit_views)',
'toolkit_uses_pure_views%': '<(toolkit_uses_pure_views)',
'views_compositor%': '<(views_compositor)',
- 'aura_wm%': '<(aura_wm)',
+ 'use_aura%': '<(use_aura)',
# We used to provide a variable for changing how libraries were built.
# This variable remains until we can clean up all the users.
@@ -295,7 +295,7 @@
'toolkit_views%': '<(toolkit_views)',
'toolkit_uses_pure_views%': '<(toolkit_uses_pure_views)',
'views_compositor%': '<(views_compositor)',
- 'aura_wm%': '<(aura_wm)',
+ 'use_aura%': '<(use_aura)',
'os_posix%': '<(os_posix)',
'toolkit_uses_gtk%': '<(toolkit_uses_gtk)',
'use_skia%': '<(use_skia)',
@@ -786,8 +786,8 @@
['views_compositor==1', {
'defines': ['VIEWS_COMPOSITOR=1'],
}],
- ['aura_wm==1', {
- 'defines': ['AURA_WM=1'],
+ ['use_aura==1', {
+ 'defines': ['USE_AURA=1'],
}],
['chromeos==1', {
'defines': ['OS_CHROMEOS=1'],
@@ -1059,6 +1059,9 @@
['toolkit_views==0', {
'sources/': [ ['exclude', '_views\\.(h|cc)$'] ]
}],
+ ['use_aura==0', {
+ 'sources/': [ ['exclude', '_aura\\.(h|cc)$'] ]
+ }],
],
}],
], # target_conditions for 'target_defaults'
« no previous file with comments | « no previous file | ui/gfx/native_widget_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698