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

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

Issue 11275296: Move shadow code to views\corewm (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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/corewm/shadow_types.cc ('k') | no next file » | 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
9 'target_defaults': { 8 'target_defaults': {
10 'conditions': [ 9 'conditions': [
11 ['use_aura==1', { 10 ['use_aura==1', {
12 'sources/': [ ['exclude', '_win\\.(h|cc)$'] ], 11 'sources/': [ ['exclude', '_win\\.(h|cc)$'] ],
13 'dependencies': [ '../aura/aura.gyp:aura', ], 12 'dependencies': [ '../aura/aura.gyp:aura', ],
14 }], 13 }],
15 ['OS!="linux" or chromeos==1', { 14 ['OS!="linux" or chromeos==1', {
16 'sources/': [ ['exclude', '_linux\\.(h|cc)$'] ], 15 'sources/': [ ['exclude', '_linux\\.(h|cc)$'] ],
17 }], 16 }],
18 ], 17 ],
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 'controls/throbber.h', 232 'controls/throbber.h',
234 'controls/tree/tree_view.h', 233 'controls/tree/tree_view.h',
235 'controls/tree/tree_view_controller.cc', 234 'controls/tree/tree_view_controller.cc',
236 'controls/tree/tree_view_controller.h', 235 'controls/tree/tree_view_controller.h',
237 'controls/tree/tree_view_views.cc', 236 'controls/tree/tree_view_views.cc',
238 'controls/tree/tree_view_views.h', 237 'controls/tree/tree_view_views.h',
239 'controls/tree/tree_view_win.cc', 238 'controls/tree/tree_view_win.cc',
240 'controls/tree/tree_view_win.h', 239 'controls/tree/tree_view_win.h',
241 'corewm/compound_event_filter.cc', 240 'corewm/compound_event_filter.cc',
242 'corewm/compound_event_filter.h', 241 'corewm/compound_event_filter.h',
242 'corewm/image_grid.cc',
243 'corewm/image_grid.h',
243 'corewm/input_method_event_filter.cc', 244 'corewm/input_method_event_filter.cc',
244 'corewm/input_method_event_filter.h', 245 'corewm/input_method_event_filter.h',
246 'corewm/shadow.cc',
247 'corewm/shadow.h',
248 'corewm/shadow_controller.cc',
249 'corewm/shadow_controller.h',
250 'corewm/shadow_types.cc',
251 'corewm/shadow_types.h',
245 'debug_utils.cc', 252 'debug_utils.cc',
246 'debug_utils.h', 253 'debug_utils.h',
247 'drag_controller.h', 254 'drag_controller.h',
248 'drag_utils.cc', 255 'drag_utils.cc',
249 'drag_utils.h', 256 'drag_utils.h',
250 'focus/accelerator_handler.h', 257 'focus/accelerator_handler.h',
251 'focus/accelerator_handler_aura.cc', 258 'focus/accelerator_handler_aura.cc',
252 'focus/accelerator_handler_win.cc', 259 'focus/accelerator_handler_win.cc',
253 'focus/external_focus_tracker.cc', 260 'focus/external_focus_tracker.cc',
254 'focus/external_focus_tracker.h', 261 'focus/external_focus_tracker.h',
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 'controls/progress_bar_unittest.cc', 621 'controls/progress_bar_unittest.cc',
615 'controls/scrollbar/scrollbar_unittest.cc', 622 'controls/scrollbar/scrollbar_unittest.cc',
616 'controls/single_split_view_unittest.cc', 623 'controls/single_split_view_unittest.cc',
617 'controls/slider_unittest.cc', 624 'controls/slider_unittest.cc',
618 'controls/tabbed_pane/tabbed_pane_unittest.cc', 625 'controls/tabbed_pane/tabbed_pane_unittest.cc',
619 'controls/table/table_view_unittest.cc', 626 'controls/table/table_view_unittest.cc',
620 'controls/textfield/native_textfield_views_unittest.cc', 627 'controls/textfield/native_textfield_views_unittest.cc',
621 'controls/textfield/textfield_views_model_unittest.cc', 628 'controls/textfield/textfield_views_model_unittest.cc',
622 'controls/tree/tree_view_views_unittest.cc', 629 'controls/tree/tree_view_views_unittest.cc',
623 'corewm/compound_event_filter_unittest.cc', 630 'corewm/compound_event_filter_unittest.cc',
631 'corewm/image_grid_unittest.cc',
624 'corewm/input_method_event_filter_unittest.cc', 632 'corewm/input_method_event_filter_unittest.cc',
633 'corewm/shadow_controller_unittest.cc',
625 'focus/focus_manager_test.h', 634 'focus/focus_manager_test.h',
626 'focus/focus_manager_test.cc', 635 'focus/focus_manager_test.cc',
627 'focus/focus_manager_unittest.cc', 636 'focus/focus_manager_unittest.cc',
628 'focus/focus_manager_unittest_win.cc', 637 'focus/focus_manager_unittest_win.cc',
629 'focus/focus_traversal_unittest.cc', 638 'focus/focus_traversal_unittest.cc',
630 'layout/box_layout_unittest.cc', 639 'layout/box_layout_unittest.cc',
631 'layout/grid_layout_unittest.cc', 640 'layout/grid_layout_unittest.cc',
632 'view_model_unittest.cc', 641 'view_model_unittest.cc',
633 'view_model_utils_unittest.cc', 642 'view_model_utils_unittest.cc',
634 'view_unittest.cc', 643 'view_unittest.cc',
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
910 'sources/': [ 919 'sources/': [
911 # This is needed because the aura rule strips it from the default 920 # This is needed because the aura rule strips it from the default
912 # sources list. 921 # sources list.
913 ['include', '^../../content/app/startup_helper_win.cc'], 922 ['include', '^../../content/app/startup_helper_win.cc'],
914 ], 923 ],
915 }], 924 }],
916 ], 925 ],
917 }, # target_name: views_examples_with_content_exe 926 }, # target_name: views_examples_with_content_exe
918 ], 927 ],
919 } 928 }
OLDNEW
« no previous file with comments | « ui/views/corewm/shadow_types.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698