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

Side by Side Diff: ui/views/views.gyp

Issue 267593005: Refactor menu controller to isolate aura dependency. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup Created 6 years, 7 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'target_defaults': { 8 'target_defaults': {
9 'conditions': [ 9 'conditions': [
10 ['use_aura==1', { 10 ['use_aura==1', {
11 'dependencies': [ 11 'dependencies': [
12 '../aura/aura.gyp:aura', 12 '../aura/aura.gyp:aura',
13 '../wm/wm.gyp:wm', 13 '../wm/wm.gyp:wm',
14 ], 14 ],
15 }, { 15 }, {
16 'sources/': [ 16 'sources/': [
17 ['exclude', '^controls/combobox/'],
18 ['exclude', '^controls/native/'], 17 ['exclude', '^controls/native/'],
19 ['exclude', '^controls/scrollbar/'],
20 ['exclude', '^controls/table/'],
21 ['exclude', '^controls/tree/'],
22 ['exclude', '^corewm/'], 18 ['exclude', '^corewm/'],
23 ['exclude', '^touchui/'], 19 ['exclude', '^touchui/'],
24 ['exclude', '^widget/desktop_aura/'] 20 ['exclude', '^widget/desktop_aura/']
25 ] 21 ]
26 }], 22 }],
27 ], 23 ],
28 }, 24 },
29 'targets': [ 25 'targets': [
30 { 26 {
31 'target_name': 'views', 27 'target_name': 'views',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 'controls/glow_hover_controller.cc', 124 'controls/glow_hover_controller.cc',
129 'controls/glow_hover_controller.h', 125 'controls/glow_hover_controller.h',
130 'controls/image_view.cc', 126 'controls/image_view.cc',
131 'controls/image_view.h', 127 'controls/image_view.h',
132 'controls/label.cc', 128 'controls/label.cc',
133 'controls/label.h', 129 'controls/label.h',
134 'controls/link.cc', 130 'controls/link.cc',
135 'controls/link.h', 131 'controls/link.h',
136 'controls/link_listener.h', 132 'controls/link_listener.h',
137 'controls/menu/display_change_listener_aura.cc', 133 'controls/menu/display_change_listener_aura.cc',
134 'controls/menu/display_change_listener_mac.cc',
138 'controls/menu/menu.cc', 135 'controls/menu/menu.cc',
139 'controls/menu/menu.h', 136 'controls/menu/menu.h',
140 'controls/menu/menu_2.cc', 137 'controls/menu/menu_2.cc',
141 'controls/menu/menu_2.h', 138 'controls/menu/menu_2.h',
142 'controls/menu/menu_config.cc', 139 'controls/menu/menu_config.cc',
143 'controls/menu/menu_config.h', 140 'controls/menu/menu_config.h',
144 'controls/menu/menu_config_aura.cc', 141 'controls/menu/menu_config_aura.cc',
145 'controls/menu/menu_config_mac.cc', 142 'controls/menu/menu_config_mac.cc',
146 'controls/menu/menu_config_win.cc', 143 'controls/menu/menu_config_win.cc',
147 'controls/menu/menu_controller.cc', 144 'controls/menu/menu_controller.cc',
148 'controls/menu/menu_controller.h', 145 'controls/menu/menu_controller.h',
149 'controls/menu/menu_controller_delegate.h', 146 'controls/menu/menu_controller_delegate.h',
150 'controls/menu/menu_event_dispatcher_linux.cc', 147 'controls/menu/menu_event_dispatcher_linux.cc',
151 'controls/menu/menu_event_dispatcher_linux.h', 148 'controls/menu/menu_event_dispatcher_linux.h',
152 'controls/menu/menu_delegate.cc', 149 'controls/menu/menu_delegate.cc',
153 'controls/menu/menu_delegate.h', 150 'controls/menu/menu_delegate.h',
154 'controls/menu/menu_message_pump_dispatcher_win.cc', 151 'controls/menu/menu_message_pump_dispatcher_win.cc',
155 'controls/menu/menu_message_pump_dispatcher_win.h', 152 'controls/menu/menu_message_pump_dispatcher_win.h',
153 'controls/menu/menu_message_loop.h',
154 'controls/menu/menu_message_loop_aura.cc',
155 'controls/menu/menu_message_loop_aura.h',
156 'controls/menu/menu_message_loop_mac.cc',
157 'controls/menu/menu_message_loop_mac.h',
156 'controls/menu/menu_host.cc', 158 'controls/menu/menu_host.cc',
157 'controls/menu/menu_host.h', 159 'controls/menu/menu_host.h',
158 'controls/menu/menu_host_root_view.cc', 160 'controls/menu/menu_host_root_view.cc',
159 'controls/menu/menu_host_root_view.h', 161 'controls/menu/menu_host_root_view.h',
160 'controls/menu/menu_insertion_delegate_win.h', 162 'controls/menu/menu_insertion_delegate_win.h',
161 'controls/menu/menu_item_view.cc', 163 'controls/menu/menu_item_view.cc',
162 'controls/menu/menu_item_view.h', 164 'controls/menu/menu_item_view.h',
163 'controls/menu/menu_listener.cc', 165 'controls/menu/menu_listener.cc',
164 'controls/menu/menu_listener.h', 166 'controls/menu/menu_listener.h',
165 'controls/menu/menu_model_adapter.cc', 167 'controls/menu/menu_model_adapter.cc',
166 'controls/menu/menu_model_adapter.h', 168 'controls/menu/menu_model_adapter.h',
167 'controls/menu/menu_runner.cc', 169 'controls/menu/menu_runner.cc',
168 'controls/menu/menu_runner.h', 170 'controls/menu/menu_runner.h',
169 'controls/menu/menu_runner_handler.h', 171 'controls/menu/menu_runner_handler.h',
170 'controls/menu/menu_runner_mac.mm',
tapted 2014/05/06 00:02:46 I think you can rebase on master and land this pri
Andre 2014/05/07 23:12:39 Done.
171 'controls/menu/menu_scroll_view_container.cc', 172 'controls/menu/menu_scroll_view_container.cc',
172 'controls/menu/menu_scroll_view_container.h', 173 'controls/menu/menu_scroll_view_container.h',
173 'controls/menu/menu_separator.h', 174 'controls/menu/menu_separator.h',
174 'controls/menu/menu_separator_views.cc', 175 'controls/menu/menu_separator_views.cc',
175 'controls/menu/menu_separator_win.cc', 176 'controls/menu/menu_separator_win.cc',
176 'controls/menu/menu_types.h', 177 'controls/menu/menu_types.h',
177 'controls/menu/menu_wrapper.h', 178 'controls/menu/menu_wrapper.h',
178 'controls/menu/native_menu_win.cc', 179 'controls/menu/native_menu_win.cc',
179 'controls/menu/native_menu_win.h', 180 'controls/menu/native_menu_win.h',
180 'controls/menu/menu_image_util.cc', 181 'controls/menu/menu_image_util.cc',
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 ['use_x11==1', { 529 ['use_x11==1', {
529 'dependencies': [ 530 'dependencies': [
530 '../../build/linux/system.gyp:x11', 531 '../../build/linux/system.gyp:x11',
531 '../../build/linux/system.gyp:xrandr', 532 '../../build/linux/system.gyp:xrandr',
532 ], 533 ],
533 }], 534 }],
534 ['use_aura==0', { 535 ['use_aura==0', {
535 'sources!': [ 536 'sources!': [
536 'bubble/bubble_window_targeter.cc', 537 'bubble/bubble_window_targeter.cc',
537 'bubble/bubble_window_targeter.h', 538 'bubble/bubble_window_targeter.h',
538 'controls/menu/menu_controller.cc',
539 'controls/menu/menu_controller.h',
540 'controls/menu/menu_item_view.cc',
541 'controls/menu/menu_item_view.h',
542 'controls/menu/menu_host.cc',
543 'controls/menu/menu_host.h',
544 'controls/menu/menu_host_root_view.cc',
545 'controls/menu/menu_host_root_view.h',
546 'controls/menu/menu_model_adapter.cc',
547 'controls/menu/menu_model_adapter.h',
548 'controls/menu/menu_runner.cc',
549 'controls/menu/menu_scroll_view_container.cc',
550 'controls/menu/menu_scroll_view_container.h',
551 'controls/menu/menu_separator_views.cc',
552 'controls/menu/submenu_view.cc',
553 'controls/menu/submenu_view.h',
554 'controls/scroll_view.cc',
555 'controls/scroll_view.h',
556 'mouse_watcher_view_host.cc', 539 'mouse_watcher_view_host.cc',
557 'mouse_watcher_view_host.h', 540 'mouse_watcher_view_host.h',
558 'widget/window_reorderer.cc', 541 'widget/window_reorderer.cc',
559 'widget/window_reorderer.h', 542 'widget/window_reorderer.h',
560 ], 543 ],
561 }], 544 }],
562 ], 545 ],
563 }, # target_name: views 546 }, # target_name: views
564 { 547 {
565 'target_name': 'views_test_support', 548 'target_name': 'views_test_support',
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 }], 738 }],
756 ['use_aura==1', { 739 ['use_aura==1', {
757 'dependencies': [ 740 'dependencies': [
758 '../aura/aura.gyp:aura_test_support', 741 '../aura/aura.gyp:aura_test_support',
759 ], 742 ],
760 }], 743 }],
761 ], 744 ],
762 }, # target_name: views_unittests 745 }, # target_name: views_unittests
763 ], 746 ],
764 } 747 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698