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

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

Issue 136003015: Remove native_control* and some other non-Aura windows code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove message_loop include Created 6 years, 10 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 | « ui/views/controls/native_control_win.cc ('k') | ui/views/widget/native_widget_win.h » ('j') | 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) 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', {
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 'controls/menu/menu_win.h', 150 'controls/menu/menu_win.h',
151 'controls/menu/menu_wrapper.h', 151 'controls/menu/menu_wrapper.h',
152 'controls/menu/native_menu_win.cc', 152 'controls/menu/native_menu_win.cc',
153 'controls/menu/native_menu_win.h', 153 'controls/menu/native_menu_win.h',
154 'controls/menu/menu_image_util.cc', 154 'controls/menu/menu_image_util.cc',
155 'controls/menu/menu_image_util.h', 155 'controls/menu/menu_image_util.h',
156 'controls/menu/submenu_view.cc', 156 'controls/menu/submenu_view.cc',
157 'controls/menu/submenu_view.h', 157 'controls/menu/submenu_view.h',
158 'controls/message_box_view.cc', 158 'controls/message_box_view.cc',
159 'controls/message_box_view.h', 159 'controls/message_box_view.h',
160 'controls/native_control.cc',
161 'controls/native_control.h',
162 'controls/native_control_win.cc',
163 'controls/native_control_win.h',
164 'controls/native/native_view_host.cc', 160 'controls/native/native_view_host.cc',
165 'controls/native/native_view_host.h', 161 'controls/native/native_view_host.h',
166 'controls/native/native_view_host_aura.cc', 162 'controls/native/native_view_host_aura.cc',
167 'controls/native/native_view_host_aura.h', 163 'controls/native/native_view_host_aura.h',
168 'controls/native/native_view_host_win.cc', 164 'controls/native/native_view_host_win.cc',
169 'controls/native/native_view_host_win.h', 165 'controls/native/native_view_host_win.h',
170 'controls/prefix_delegate.h', 166 'controls/prefix_delegate.h',
171 'controls/prefix_selector.cc', 167 'controls/prefix_selector.cc',
172 'controls/prefix_selector.h', 168 'controls/prefix_selector.h',
173 'controls/progress_bar.cc', 169 'controls/progress_bar.cc',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 'widget/drop_target_win.h', 421 'widget/drop_target_win.h',
426 'widget/root_view.cc', 422 'widget/root_view.cc',
427 'widget/root_view.h', 423 'widget/root_view.h',
428 'widget/monitor_win.cc', 424 'widget/monitor_win.cc',
429 'widget/monitor_win.h', 425 'widget/monitor_win.h',
430 'widget/native_widget.h', 426 'widget/native_widget.h',
431 'widget/native_widget_aura.cc', 427 'widget/native_widget_aura.cc',
432 'widget/native_widget_aura.h', 428 'widget/native_widget_aura.h',
433 'widget/native_widget_delegate.h', 429 'widget/native_widget_delegate.h',
434 'widget/native_widget_private.h', 430 'widget/native_widget_private.h',
435 'widget/native_widget_win.cc',
436 'widget/native_widget_win.h',
437 'widget/tooltip_manager_aura.cc', 431 'widget/tooltip_manager_aura.cc',
438 'widget/tooltip_manager_aura.h', 432 'widget/tooltip_manager_aura.h',
439 'widget/tooltip_manager_win.cc', 433 'widget/tooltip_manager_win.cc',
440 'widget/tooltip_manager_win.h', 434 'widget/tooltip_manager_win.h',
441 'widget/tooltip_manager.cc', 435 'widget/tooltip_manager.cc',
442 'widget/tooltip_manager.h', 436 'widget/tooltip_manager.h',
443 'widget/widget.cc', 437 'widget/widget.cc',
444 'widget/widget.h', 438 'widget/widget.h',
445 'widget/widget_aura_utils.cc', 439 'widget/widget_aura_utils.cc',
446 'widget/widget_aura_utils.h', 440 'widget/widget_aura_utils.h',
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
1089 'sources/': [ 1083 'sources/': [
1090 # This is needed because the aura rule strips it from the default 1084 # This is needed because the aura rule strips it from the default
1091 # sources list. 1085 # sources list.
1092 ['include', '^../../content/app/startup_helper_win.cc'], 1086 ['include', '^../../content/app/startup_helper_win.cc'],
1093 ], 1087 ],
1094 }], 1088 }],
1095 ], 1089 ],
1096 }, # target_name: views_examples_with_content_exe 1090 }, # target_name: views_examples_with_content_exe
1097 ], 1091 ],
1098 } 1092 }
OLDNEW
« no previous file with comments | « ui/views/controls/native_control_win.cc ('k') | ui/views/widget/native_widget_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698