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

Side by Side Diff: ui/ui.gyp

Issue 7850026: Aura under Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: White spaces Created 9 years, 3 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) 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 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows. 8 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows.
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 'gfx/skia_util.h', 291 'gfx/skia_util.h',
292 'gfx/skia_utils_gtk.cc', 292 'gfx/skia_utils_gtk.cc',
293 'gfx/skia_utils_gtk.h', 293 'gfx/skia_utils_gtk.h',
294 'gfx/transform.h', 294 'gfx/transform.h',
295 'gfx/transform.cc', 295 'gfx/transform.cc',
296 ], 296 ],
297 'conditions': [ 297 'conditions': [
298 ['use_aura==1', { 298 ['use_aura==1', {
299 'sources/': [ 299 'sources/': [
300 ['exclude', 'gfx/gtk_'], 300 ['exclude', 'gfx/gtk_'],
301 ['exclude', 'gfx/gtk_util.cc'],
302 ['exclude', 'gfx/gtk_util.h'],
301 ['exclude', 'gfx/screen_gtk.cc'], 303 ['exclude', 'gfx/screen_gtk.cc'],
302 ['exclude', 'gfx/screen_win.cc'], 304 ['exclude', 'gfx/screen_win.cc'],
303 ['exclude', 'base/win/mouse_wheel_util.cc'], 305 ['exclude', 'base/win/mouse_wheel_util.cc'],
304 ['exclude', 'base/win/mouse_wheel_util.h'], 306 ['exclude', 'base/win/mouse_wheel_util.h'],
305 ], 307 ],
306 }], 308 }],
307 ['toolkit_uses_gtk == 1', { 309 ['toolkit_uses_gtk == 1', {
308 'dependencies': [ 310 'dependencies': [
309 # font_gtk.cc uses fontconfig. 311 # font_gtk.cc uses fontconfig.
310 # TODO(evanm): I think this is wrong; it should just use GTK. 312 # TODO(evanm): I think this is wrong; it should just use GTK.
311 '../build/linux/system.gyp:fontconfig', 313 '../build/linux/system.gyp:fontconfig',
312 '../build/linux/system.gyp:gtk', 314 '../build/linux/system.gyp:gtk',
313 '../build/linux/system.gyp:x11', 315 '../build/linux/system.gyp:x11',
314 '../build/linux/system.gyp:xext', 316 '../build/linux/system.gyp:xext',
315 ], 317 ],
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 529 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
528 'os.chmod(\'<(ui_copy_dest)\', 0700)' 530 'os.chmod(\'<(ui_copy_dest)\', 0700)'
529 ] 531 ]
530 } 532 }
531 ], 533 ],
532 }, 534 },
533 ], 535 ],
534 }], 536 }],
535 ], 537 ],
536 } 538 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698