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

Side by Side Diff: views/views.gyp

Issue 7328011: Introduce ui.dll / libui.so for the component build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 }, 8 },
9 9
10 'conditions': [ 10 'conditions': [
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ['exclude', 'widget/tooltip_manager_views.cc$'], 55 ['exclude', 'widget/tooltip_manager_views.cc$'],
56 ]}], 56 ]}],
57 ], 57 ],
58 }, 58 },
59 'targets': [ 59 'targets': [
60 { 60 {
61 'target_name': 'views', 61 'target_name': 'views',
62 'type': 'static_library', 62 'type': 'static_library',
63 'dependencies': [ 63 'dependencies': [
64 '../base/base.gyp:base', 64 '../base/base.gyp:base',
65 '../base/base.gyp:base_i18n',
65 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 66 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
66 '../build/temp_gyp/googleurl.gyp:googleurl', 67 '../build/temp_gyp/googleurl.gyp:googleurl',
67 '../skia/skia.gyp:skia', 68 '../skia/skia.gyp:skia',
68 '../third_party/icu/icu.gyp:icui18n', 69 '../third_party/icu/icu.gyp:icui18n',
69 '../third_party/icu/icu.gyp:icuuc', 70 '../third_party/icu/icu.gyp:icuuc',
70 '../ui/base/strings/ui_strings.gyp:ui_strings', 71 '../ui/base/strings/ui_strings.gyp:ui_strings',
71 '../ui/gfx/compositor/compositor.gyp:compositor', 72 '../ui/gfx/compositor/compositor.gyp:compositor',
72 '../ui/ui.gyp:ui_base', 73 '../ui/ui.gyp:ui',
73 '../ui/ui.gyp:ui_resources', 74 '../ui/ui.gyp:ui_resources',
74 ], 75 ],
75 'sources': [ 76 'sources': [
76 # All .cc, .h under views, except unittests 77 # All .cc, .h under views, except unittests
77 'accelerator.cc', 78 'accelerator.cc',
78 'accelerator.h', 79 'accelerator.h',
79 'accessibility/native_view_accessibility_win.cc', 80 'accessibility/native_view_accessibility_win.cc',
80 'accessibility/native_view_accessibility_win.h', 81 'accessibility/native_view_accessibility_win.h',
81 'animation/bounds_animator.cc', 82 'animation/bounds_animator.cc',
82 'animation/bounds_animator.h', 83 'animation/bounds_animator.h',
83 'background.cc', 84 'background.cc',
84 'background.h', 85 'background.h',
85 'border.cc', 86 'border.cc',
86 'border.h', 87 'border.h',
87 » 'context_menu_controller.h', 88 'context_menu_controller.h',
88 'controls/button/button.cc', 89 'controls/button/button.cc',
89 'controls/button/button.h', 90 'controls/button/button.h',
90 'controls/button/button_dropdown.cc', 91 'controls/button/button_dropdown.cc',
91 'controls/button/button_dropdown.h', 92 'controls/button/button_dropdown.h',
92 'controls/button/checkbox.cc', 93 'controls/button/checkbox.cc',
93 'controls/button/checkbox.h', 94 'controls/button/checkbox.h',
94 'controls/button/custom_button.cc', 95 'controls/button/custom_button.cc',
95 'controls/button/custom_button.h', 96 'controls/button/custom_button.h',
96 'controls/button/image_button.cc', 97 'controls/button/image_button.cc',
97 'controls/button/image_button.h', 98 'controls/button/image_button.h',
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 ], 562 ],
562 }, 563 },
563 { 564 {
564 'target_name': 'views_examples', 565 'target_name': 'views_examples',
565 'type': 'executable', 566 'type': 'executable',
566 'dependencies': [ 567 'dependencies': [
567 '../base/base.gyp:base', 568 '../base/base.gyp:base',
568 '../skia/skia.gyp:skia', 569 '../skia/skia.gyp:skia',
569 '../third_party/icu/icu.gyp:icui18n', 570 '../third_party/icu/icu.gyp:icui18n',
570 '../third_party/icu/icu.gyp:icuuc', 571 '../third_party/icu/icu.gyp:icuuc',
571 '../ui/ui.gyp:ui_gfx', 572 '../ui/ui.gyp:ui',
572 '../ui/ui.gyp:gfx_resources', 573 '../ui/ui.gyp:gfx_resources',
573 '../ui/ui.gyp:ui_resources', 574 '../ui/ui.gyp:ui_resources',
574 'views', 575 'views',
575 ], 576 ],
576 'include_dirs': [ 577 'include_dirs': [
577 '..', 578 '..',
578 ], 579 ],
579 'sources': [ 580 'sources': [
580 'examples/button_example.cc', 581 'examples/button_example.cc',
581 'examples/button_example.h', 582 'examples/button_example.h',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 }, 653 },
653 { 654 {
654 'target_name': 'views_desktop_lib', 655 'target_name': 'views_desktop_lib',
655 'type': 'static_library', 656 'type': 'static_library',
656 'dependencies': [ 657 'dependencies': [
657 '../base/base.gyp:base', 658 '../base/base.gyp:base',
658 '../skia/skia.gyp:skia', 659 '../skia/skia.gyp:skia',
659 '../third_party/icu/icu.gyp:icui18n', 660 '../third_party/icu/icu.gyp:icui18n',
660 '../third_party/icu/icu.gyp:icuuc', 661 '../third_party/icu/icu.gyp:icuuc',
661 '../ui/ui.gyp:gfx_resources', 662 '../ui/ui.gyp:gfx_resources',
662 '../ui/ui.gyp:ui_gfx', 663 '../ui/ui.gyp:ui',
663 '../ui/ui.gyp:ui_resources', 664 '../ui/ui.gyp:ui_resources',
664 'views', 665 'views',
665 ], 666 ],
666 'include_dirs': [ 667 'include_dirs': [
667 '..', 668 '..',
668 ], 669 ],
669 'sources': [ 670 'sources': [
670 'desktop/desktop_background.cc', 671 'desktop/desktop_background.cc',
671 'desktop/desktop_background.h', 672 'desktop/desktop_background.h',
672 'desktop/desktop_window_root_view.cc', 673 'desktop/desktop_window_root_view.cc',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 }, 705 },
705 { 706 {
706 'target_name': 'views_desktop', 707 'target_name': 'views_desktop',
707 'type': 'executable', 708 'type': 'executable',
708 'dependencies': [ 709 'dependencies': [
709 '../base/base.gyp:base', 710 '../base/base.gyp:base',
710 '../skia/skia.gyp:skia', 711 '../skia/skia.gyp:skia',
711 '../third_party/icu/icu.gyp:icui18n', 712 '../third_party/icu/icu.gyp:icui18n',
712 '../third_party/icu/icu.gyp:icuuc', 713 '../third_party/icu/icu.gyp:icuuc',
713 '../ui/ui.gyp:gfx_resources', 714 '../ui/ui.gyp:gfx_resources',
714 '../ui/ui.gyp:ui_gfx', 715 '../ui/ui.gyp:ui',
715 '../ui/ui.gyp:ui_resources', 716 '../ui/ui.gyp:ui_resources',
716 'views', 717 'views',
717 'views_desktop_lib', 718 'views_desktop_lib',
718 ], 719 ],
719 'include_dirs': [ 720 'include_dirs': [
720 '..', 721 '..',
721 ], 722 ],
722 'sources': [ 723 'sources': [
723 'desktop/desktop_main.cc', 724 'desktop/desktop_main.cc',
724 'desktop/desktop_views_delegate.cc', 725 'desktop/desktop_views_delegate.cc',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 758
758 759
759 ], 760 ],
760 } 761 }
761 762
762 # Local Variables: 763 # Local Variables:
763 # tab-width:2 764 # tab-width:2
764 # indent-tabs-mode:nil 765 # indent-tabs-mode:nil
765 # End: 766 # End:
766 # vim: set expandtab tabstop=2 shiftwidth=2: 767 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698