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

Side by Side Diff: views/views.gyp

Issue 7206055: Add an option to run Chrome in the views desktop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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
« no previous file with comments | « views/desktop/desktop_window.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 }, 8 },
9 9
10 'conditions': [ 10 'conditions': [
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 '<(DEPTH)/third_party/wtl/include', 621 '<(DEPTH)/third_party/wtl/include',
622 ], 622 ],
623 'sources': [ 623 'sources': [
624 'examples/table_example.cc', 624 'examples/table_example.cc',
625 'examples/table_example.h', 625 'examples/table_example.h',
626 ], 626 ],
627 }], 627 }],
628 ], 628 ],
629 }, 629 },
630 { 630 {
631 'target_name': 'views_desktop', 631 'target_name': 'views_desktop_lib',
632 'type': 'executable', 632 'type': 'static_library',
633 'dependencies': [ 633 'dependencies': [
634 '../app/app.gyp:app_resources', 634 '../app/app.gyp:app_resources',
635 '../base/base.gyp:base', 635 '../base/base.gyp:base',
636 '../skia/skia.gyp:skia', 636 '../skia/skia.gyp:skia',
637 '../third_party/icu/icu.gyp:icui18n', 637 '../third_party/icu/icu.gyp:icui18n',
638 '../third_party/icu/icu.gyp:icuuc', 638 '../third_party/icu/icu.gyp:icuuc',
639 'views', 639 'views',
640 '../ui/ui.gyp:ui_gfx', 640 '../ui/ui.gyp:ui_gfx',
641 '../ui/ui.gyp:gfx_resources', 641 '../ui/ui.gyp:gfx_resources',
642 ], 642 ],
643 'include_dirs': [ 643 'include_dirs': [
644 '..', 644 '..',
645 ], 645 ],
646 'sources': [ 646 'sources': [
647 'desktop/desktop_background.cc', 647 'desktop/desktop_background.cc',
648 'desktop/desktop_background.h', 648 'desktop/desktop_background.h',
649 'desktop/desktop_main.cc',
650 'desktop/desktop_views_delegate.cc',
651 'desktop/desktop_views_delegate.h',
652 'desktop/desktop_window.cc', 649 'desktop/desktop_window.cc',
653 'desktop/desktop_window.h', 650 'desktop/desktop_window.h',
654 'desktop/desktop_window_root_view.cc', 651 'desktop/desktop_window_root_view.cc',
655 'desktop/desktop_window_root_view.h', 652 'desktop/desktop_window_root_view.h',
653 ],
654 'conditions': [
655 ['toolkit_uses_gtk == 1', {
656 'dependencies': [
657 '../build/linux/system.gyp:gtk',
658 '../chrome/chrome.gyp:packed_resources',
659 ],
660 'conditions': [
661 ['linux_use_tcmalloc==1', {
662 'dependencies': [
663 '../base/allocator/allocator.gyp:allocator',
664 ],
665 }],
666 ],
667 },
668 ],
669 ['OS=="win"', {
670 'link_settings': {
671 'libraries': [
672 '-limm32.lib',
673 '-loleacc.lib',
674 ]
675 },
676 'include_dirs': [
677 '<(DEPTH)/third_party/wtl/include',
678 ],
679 }],
680 ],
681 },
682 {
683 'target_name': 'views_desktop',
684 'type': 'executable',
685 'dependencies': [
686 '../app/app.gyp:app_resources',
687 '../base/base.gyp:base',
688 '../skia/skia.gyp:skia',
689 '../third_party/icu/icu.gyp:icui18n',
690 '../third_party/icu/icu.gyp:icuuc',
691 'views',
692 'views_desktop_lib',
693 '../ui/ui.gyp:ui_gfx',
694 '../ui/ui.gyp:gfx_resources',
695 ],
696 'include_dirs': [
697 '..',
698 ],
699 'sources': [
700 'desktop/desktop_main.cc',
701 'desktop/desktop_views_delegate.cc',
702 'desktop/desktop_views_delegate.h',
656 '<(SHARED_INTERMEDIATE_DIR)/app/app_resources/app_resources.rc', 703 '<(SHARED_INTERMEDIATE_DIR)/app/app_resources/app_resources.rc',
657 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 704 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
658 ], 705 ],
659 'conditions': [ 706 'conditions': [
660 ['toolkit_uses_gtk == 1', { 707 ['toolkit_uses_gtk == 1', {
661 'dependencies': [ 708 'dependencies': [
662 '../build/linux/system.gyp:gtk', 709 '../build/linux/system.gyp:gtk',
663 '../chrome/chrome.gyp:packed_resources', 710 '../chrome/chrome.gyp:packed_resources',
664 ], 711 ],
665 'conditions': [ 712 'conditions': [
(...skipping 21 matching lines...) Expand all
687 734
688 735
689 ], 736 ],
690 } 737 }
691 738
692 # Local Variables: 739 # Local Variables:
693 # tab-width:2 740 # tab-width:2
694 # indent-tabs-mode:nil 741 # indent-tabs-mode:nil
695 # End: 742 # End:
696 # vim: set expandtab tabstop=2 shiftwidth=2: 743 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « views/desktop/desktop_window.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698