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

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

Issue 115453004: Moves management of transients out of Window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unneeded parens Created 6 years, 11 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', {
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 'corewm/shadow_controller.h', 256 'corewm/shadow_controller.h',
257 'corewm/shadow_types.cc', 257 'corewm/shadow_types.cc',
258 'corewm/shadow_types.h', 258 'corewm/shadow_types.h',
259 'corewm/tooltip.h', 259 'corewm/tooltip.h',
260 'corewm/tooltip_aura.cc', 260 'corewm/tooltip_aura.cc',
261 'corewm/tooltip_aura.h', 261 'corewm/tooltip_aura.h',
262 'corewm/tooltip_controller.cc', 262 'corewm/tooltip_controller.cc',
263 'corewm/tooltip_controller.h', 263 'corewm/tooltip_controller.h',
264 'corewm/tooltip_win.cc', 264 'corewm/tooltip_win.cc',
265 'corewm/tooltip_win.h', 265 'corewm/tooltip_win.h',
266 'corewm/transient_window_controller.cc',
267 'corewm/transient_window_controller.h',
268 'corewm/transient_window_manager.cc',
269 'corewm/transient_window_manager.h',
266 'corewm/transient_window_stacking_client.cc', 270 'corewm/transient_window_stacking_client.cc',
267 'corewm/transient_window_stacking_client.h', 271 'corewm/transient_window_stacking_client.h',
268 'corewm/visibility_controller.cc', 272 'corewm/visibility_controller.cc',
269 'corewm/visibility_controller.h', 273 'corewm/visibility_controller.h',
270 'corewm/window_animations.cc', 274 'corewm/window_animations.cc',
271 'corewm/window_animations.h', 275 'corewm/window_animations.h',
272 'corewm/window_modality_controller.cc', 276 'corewm/window_modality_controller.cc',
273 'corewm/window_modality_controller.h', 277 'corewm/window_modality_controller.h',
274 'corewm/window_util.cc', 278 'corewm/window_util.cc',
275 'corewm/window_util.h', 279 'corewm/window_util.h',
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 'controls/tree/tree_view_unittest.cc', 765 'controls/tree/tree_view_unittest.cc',
762 'corewm/capture_controller_unittest.cc', 766 'corewm/capture_controller_unittest.cc',
763 'corewm/compound_event_filter_unittest.cc', 767 'corewm/compound_event_filter_unittest.cc',
764 'corewm/cursor_manager_unittest.cc', 768 'corewm/cursor_manager_unittest.cc',
765 'corewm/focus_controller_unittest.cc', 769 'corewm/focus_controller_unittest.cc',
766 'corewm/image_grid_unittest.cc', 770 'corewm/image_grid_unittest.cc',
767 'corewm/input_method_event_filter_unittest.cc', 771 'corewm/input_method_event_filter_unittest.cc',
768 'corewm/shadow_controller_unittest.cc', 772 'corewm/shadow_controller_unittest.cc',
769 'corewm/tooltip_aura_unittest.cc', 773 'corewm/tooltip_aura_unittest.cc',
770 'corewm/tooltip_controller_unittest.cc', 774 'corewm/tooltip_controller_unittest.cc',
775 'corewm/transient_window_manager_unittest.cc',
771 'corewm/transient_window_stacking_client_unittest.cc', 776 'corewm/transient_window_stacking_client_unittest.cc',
772 'corewm/visibility_controller_unittest.cc', 777 'corewm/visibility_controller_unittest.cc',
773 'corewm/window_animations_unittest.cc', 778 'corewm/window_animations_unittest.cc',
774 'corewm/window_util_unittest.cc', 779 'corewm/window_util_unittest.cc',
775 'focus/focus_manager_test.h', 780 'focus/focus_manager_test.h',
776 'focus/focus_manager_test.cc', 781 'focus/focus_manager_test.cc',
777 'focus/focus_manager_unittest.cc', 782 'focus/focus_manager_unittest.cc',
778 'focus/focus_manager_unittest_win.cc', 783 'focus/focus_manager_unittest_win.cc',
779 'focus/focus_traversal_unittest.cc', 784 'focus/focus_traversal_unittest.cc',
780 'ime/input_method_bridge_unittest.cc', 785 'ime/input_method_bridge_unittest.cc',
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
1119 'sources/': [ 1124 'sources/': [
1120 # This is needed because the aura rule strips it from the default 1125 # This is needed because the aura rule strips it from the default
1121 # sources list. 1126 # sources list.
1122 ['include', '^../../content/app/startup_helper_win.cc'], 1127 ['include', '^../../content/app/startup_helper_win.cc'],
1123 ], 1128 ],
1124 }], 1129 }],
1125 ], 1130 ],
1126 }, # target_name: views_examples_with_content_exe 1131 }, # target_name: views_examples_with_content_exe
1127 ], 1132 ],
1128 } 1133 }
OLDNEW
« no previous file with comments | « ui/views/corewm/wm_state.cc ('k') | ui/views/widget/desktop_aura/desktop_root_window_host_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698