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

Side by Side Diff: ui/ui.gyp

Issue 10241005: Make win_aura work without ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'includes': [ 9 'includes': [
10 'ui_resources.gypi', 10 'ui_resources.gypi',
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 ], 428 ],
429 }], 429 }],
430 ['use_aura==1', { 430 ['use_aura==1', {
431 'sources/': [ 431 'sources/': [
432 ['exclude', 'gfx/gtk_'], 432 ['exclude', 'gfx/gtk_'],
433 ['exclude', 'gfx/gtk_util.cc'], 433 ['exclude', 'gfx/gtk_util.cc'],
434 ['exclude', 'gfx/gtk_util.h'], 434 ['exclude', 'gfx/gtk_util.h'],
435 ['exclude', 'gfx/screen_gtk.cc'], 435 ['exclude', 'gfx/screen_gtk.cc'],
436 ['exclude', 'gfx/screen_win.cc'], 436 ['exclude', 'gfx/screen_win.cc'],
437 ['exclude', 'base/dragdrop/drag_utils_win.cc'], 437 ['exclude', 'base/dragdrop/drag_utils_win.cc'],
438 ['exclude', 'base/view_prop.cc'],
439 ['exclude', 'base/view_prop.h'],
440 ['exclude', 'base/win/mouse_wheel_util.cc'], 438 ['exclude', 'base/win/mouse_wheel_util.cc'],
441 ['exclude', 'base/win/mouse_wheel_util.h'], 439 ['exclude', 'base/win/mouse_wheel_util.h'],
442 ['exclude', 'base/work_area_watcher_observer.h'], 440 ['exclude', 'base/work_area_watcher_observer.h'],
443 ['exclude', 'base/x/active_window_watcher_x.cc'], 441 ['exclude', 'base/x/active_window_watcher_x.cc'],
444 ['exclude', 'base/x/active_window_watcher_x.h'], 442 ['exclude', 'base/x/active_window_watcher_x.h'],
445 ['exclude', 'base/x/active_window_watcher_x_observer.h'], 443 ['exclude', 'base/x/active_window_watcher_x_observer.h'],
446 ['exclude', 'base/x/root_window_property_watcher_x.cc'], 444 ['exclude', 'base/x/root_window_property_watcher_x.cc'],
447 ['exclude', 'base/x/root_window_property_watcher_x.h'], 445 ['exclude', 'base/x/root_window_property_watcher_x.h'],
448 ['exclude', 'base/x/work_area_watcher_x.cc'], 446 ['exclude', 'base/x/work_area_watcher_x.cc'],
449 ['exclude', 'base/x/work_area_watcher_x.h'], 447 ['exclude', 'base/x/work_area_watcher_x.h'],
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 }, 584 },
587 }, 585 },
588 'link_settings': { 586 'link_settings': {
589 'libraries': [ 587 'libraries': [
590 '-limm32.lib', 588 '-limm32.lib',
591 '-ld2d1.lib', 589 '-ld2d1.lib',
592 '-loleacc.lib', 590 '-loleacc.lib',
593 ], 591 ],
594 }, 592 },
595 },{ # OS!="win" 593 },{ # OS!="win"
594 'conditions': [
595 ['use_aura==0', {
596 'sources!': [
597 'base/view_prop.cc',
598 'base/view_prop.h',
599 ],
600 }],
601 ],
596 'sources!': [ 602 'sources!': [
597 'base/dragdrop/drag_source.cc', 603 'base/dragdrop/drag_source.cc',
598 'base/dragdrop/drag_source.h', 604 'base/dragdrop/drag_source.h',
599 'base/dragdrop/drag_drop_types.h', 605 'base/dragdrop/drag_drop_types.h',
600 'base/dragdrop/drop_target.cc', 606 'base/dragdrop/drop_target.cc',
601 'base/dragdrop/drop_target.h', 607 'base/dragdrop/drop_target.h',
602 'base/dragdrop/os_exchange_data.cc', 608 'base/dragdrop/os_exchange_data.cc',
603 'base/view_prop.cc',
604 'base/view_prop.h',
605 'gfx/native_theme_win.cc', 609 'gfx/native_theme_win.cc',
606 'gfx/native_theme_win.h', 610 'gfx/native_theme_win.h',
607 ], 611 ],
608 'sources/': [ 612 'sources/': [
609 ['exclude', '^base/win/*'], 613 ['exclude', '^base/win/*'],
610 ], 614 ],
611 }], 615 }],
612 ['OS=="mac"', { 616 ['OS=="mac"', {
613 'sources!': [ 617 'sources!': [
614 'base/dragdrop/drag_utils.cc', 618 'base/dragdrop/drag_utils.cc',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 742 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
739 'os.chmod(\'<(ui_copy_dest)\', 0700)' 743 'os.chmod(\'<(ui_copy_dest)\', 0700)'
740 ] 744 ]
741 } 745 }
742 ], 746 ],
743 }, 747 },
744 ], 748 ],
745 }], 749 }],
746 ], 750 ],
747 } 751 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698