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

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 26 matching lines...) Expand all
37 ['exclude', 'widget/tooltip_manager_views.cc$'], 37 ['exclude', 'widget/tooltip_manager_views.cc$'],
38 ]}], 38 ]}],
39 ], 39 ],
40 }, 40 },
41 'targets': [ 41 'targets': [
42 { 42 {
43 'target_name': 'views', 43 'target_name': 'views',
44 'type': 'static_library', 44 'type': 'static_library',
45 'dependencies': [ 45 'dependencies': [
46 '../base/base.gyp:base', 46 '../base/base.gyp:base',
47 '../base/base.gyp:base_i18n',
47 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 48 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
48 '../build/temp_gyp/googleurl.gyp:googleurl', 49 '../build/temp_gyp/googleurl.gyp:googleurl',
49 '../skia/skia.gyp:skia', 50 '../skia/skia.gyp:skia',
50 '../third_party/icu/icu.gyp:icui18n', 51 '../third_party/icu/icu.gyp:icui18n',
51 '../third_party/icu/icu.gyp:icuuc', 52 '../third_party/icu/icu.gyp:icuuc',
52 '../ui/base/strings/ui_strings.gyp:ui_strings', 53 '../ui/base/strings/ui_strings.gyp:ui_strings',
53 '../ui/gfx/compositor/compositor.gyp:compositor', 54 '../ui/gfx/compositor/compositor.gyp:compositor',
54 '../ui/ui.gyp:ui_base', 55 '../ui/ui.gyp:ui',
55 '../ui/ui.gyp:ui_resources', 56 '../ui/ui.gyp:ui_resources',
56 ], 57 ],
57 'sources': [ 58 'sources': [
58 # All .cc, .h under views, except unittests 59 # All .cc, .h under views, except unittests
59 'accelerator.cc', 60 'accelerator.cc',
60 'accelerator.h', 61 'accelerator.h',
61 'accessibility/native_view_accessibility_win.cc', 62 'accessibility/native_view_accessibility_win.cc',
62 'accessibility/native_view_accessibility_win.h', 63 'accessibility/native_view_accessibility_win.h',
63 'animation/bounds_animator.cc', 64 'animation/bounds_animator.cc',
64 'animation/bounds_animator.h', 65 'animation/bounds_animator.h',
65 'background.cc', 66 'background.cc',
66 'background.h', 67 'background.h',
67 'border.cc', 68 'border.cc',
68 'border.h', 69 'border.h',
69 » 'context_menu_controller.h', 70 'context_menu_controller.h',
70 'controls/button/button.cc', 71 'controls/button/button.cc',
71 'controls/button/button.h', 72 'controls/button/button.h',
72 'controls/button/button_dropdown.cc', 73 'controls/button/button_dropdown.cc',
73 'controls/button/button_dropdown.h', 74 'controls/button/button_dropdown.h',
74 'controls/button/checkbox.cc', 75 'controls/button/checkbox.cc',
75 'controls/button/checkbox.h', 76 'controls/button/checkbox.h',
76 'controls/button/custom_button.cc', 77 'controls/button/custom_button.cc',
77 'controls/button/custom_button.h', 78 'controls/button/custom_button.h',
78 'controls/button/image_button.cc', 79 'controls/button/image_button.cc',
79 'controls/button/image_button.h', 80 'controls/button/image_button.h',
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 ], 542 ],
542 }, 543 },
543 { 544 {
544 'target_name': 'views_examples', 545 'target_name': 'views_examples',
545 'type': 'executable', 546 'type': 'executable',
546 'dependencies': [ 547 'dependencies': [
547 '../base/base.gyp:base', 548 '../base/base.gyp:base',
548 '../skia/skia.gyp:skia', 549 '../skia/skia.gyp:skia',
549 '../third_party/icu/icu.gyp:icui18n', 550 '../third_party/icu/icu.gyp:icui18n',
550 '../third_party/icu/icu.gyp:icuuc', 551 '../third_party/icu/icu.gyp:icuuc',
551 '../ui/ui.gyp:ui_gfx', 552 '../ui/ui.gyp:ui',
552 '../ui/ui.gyp:gfx_resources', 553 '../ui/ui.gyp:gfx_resources',
553 '../ui/ui.gyp:ui_resources', 554 '../ui/ui.gyp:ui_resources',
554 'views', 555 'views',
555 ], 556 ],
556 'include_dirs': [ 557 'include_dirs': [
557 '..', 558 '..',
558 ], 559 ],
559 'sources': [ 560 'sources': [
560 'examples/button_example.cc', 561 'examples/button_example.cc',
561 'examples/button_example.h', 562 'examples/button_example.h',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 }, 633 },
633 { 634 {
634 'target_name': 'views_desktop_lib', 635 'target_name': 'views_desktop_lib',
635 'type': 'static_library', 636 'type': 'static_library',
636 'dependencies': [ 637 'dependencies': [
637 '../base/base.gyp:base', 638 '../base/base.gyp:base',
638 '../skia/skia.gyp:skia', 639 '../skia/skia.gyp:skia',
639 '../third_party/icu/icu.gyp:icui18n', 640 '../third_party/icu/icu.gyp:icui18n',
640 '../third_party/icu/icu.gyp:icuuc', 641 '../third_party/icu/icu.gyp:icuuc',
641 '../ui/ui.gyp:gfx_resources', 642 '../ui/ui.gyp:gfx_resources',
642 '../ui/ui.gyp:ui_gfx', 643 '../ui/ui.gyp:ui',
643 '../ui/ui.gyp:ui_resources', 644 '../ui/ui.gyp:ui_resources',
644 'views', 645 'views',
645 ], 646 ],
646 'include_dirs': [ 647 'include_dirs': [
647 '..', 648 '..',
648 ], 649 ],
649 'sources': [ 650 'sources': [
650 'desktop/desktop_background.cc', 651 'desktop/desktop_background.cc',
651 'desktop/desktop_background.h', 652 'desktop/desktop_background.h',
652 'desktop/desktop_window_root_view.cc', 653 'desktop/desktop_window_root_view.cc',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 }, 685 },
685 { 686 {
686 'target_name': 'views_desktop', 687 'target_name': 'views_desktop',
687 'type': 'executable', 688 'type': 'executable',
688 'dependencies': [ 689 'dependencies': [
689 '../base/base.gyp:base', 690 '../base/base.gyp:base',
690 '../skia/skia.gyp:skia', 691 '../skia/skia.gyp:skia',
691 '../third_party/icu/icu.gyp:icui18n', 692 '../third_party/icu/icu.gyp:icui18n',
692 '../third_party/icu/icu.gyp:icuuc', 693 '../third_party/icu/icu.gyp:icuuc',
693 '../ui/ui.gyp:gfx_resources', 694 '../ui/ui.gyp:gfx_resources',
694 '../ui/ui.gyp:ui_gfx', 695 '../ui/ui.gyp:ui',
695 '../ui/ui.gyp:ui_resources', 696 '../ui/ui.gyp:ui_resources',
696 'views', 697 'views',
697 'views_desktop_lib', 698 'views_desktop_lib',
698 ], 699 ],
699 'include_dirs': [ 700 'include_dirs': [
700 '..', 701 '..',
701 ], 702 ],
702 'sources': [ 703 'sources': [
703 'desktop/desktop_main.cc', 704 'desktop/desktop_main.cc',
704 'desktop/desktop_views_delegate.cc', 705 'desktop/desktop_views_delegate.cc',
(...skipping 26 matching lines...) Expand all
731 'include_dirs': [ 732 'include_dirs': [
732 '<(DEPTH)/third_party/wtl/include', 733 '<(DEPTH)/third_party/wtl/include',
733 ], 734 ],
734 }], 735 }],
735 ], 736 ],
736 }, 737 },
737 738
738 739
739 ], 740 ],
740 } 741 }
OLDNEW
« ui/ui.gyp ('K') | « ui/ui_views.gypi ('k') | webkit/support/webkit_support.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698