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

Side by Side Diff: ui/views/BUILD.gn

Issue 2230913003: Experimental alignment layout manager using a property on the views Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed AlignAttribute and associated types to FillAttribute Created 4 years, 2 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
« no previous file with comments | « base/set_template_unittest.cc ('k') | ui/views/anchor_attribute.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//ui/ozone/ozone.gni") 8 import("//ui/ozone/ozone.gni")
9 9
10 config("flags") { 10 config("flags") {
11 defines = [ "TOOLKIT_VIEWS=1" ] 11 defines = [ "TOOLKIT_VIEWS=1" ]
12 } 12 }
13 13
14 component("views") { 14 component("views") {
15 all_dependent_configs = [ ":flags" ] 15 all_dependent_configs = [ ":flags" ]
16 sources = [ 16 sources = [
17 "accessibility/native_view_accessibility.cc", 17 "accessibility/native_view_accessibility.cc",
18 "accessibility/native_view_accessibility.h", 18 "accessibility/native_view_accessibility.h",
19 "accessibility/native_view_accessibility_win.cc", 19 "accessibility/native_view_accessibility_win.cc",
20 "accessibility/native_view_accessibility_win.h", 20 "accessibility/native_view_accessibility_win.h",
21 "accessible_pane_view.cc", 21 "accessible_pane_view.cc",
22 "accessible_pane_view.h", 22 "accessible_pane_view.h",
23 "anchor_attribute.cc",
24 "anchor_attribute.h",
23 "animation/bounds_animator.cc", 25 "animation/bounds_animator.cc",
24 "animation/bounds_animator.h", 26 "animation/bounds_animator.h",
25 "animation/flood_fill_ink_drop_ripple.cc", 27 "animation/flood_fill_ink_drop_ripple.cc",
26 "animation/flood_fill_ink_drop_ripple.h", 28 "animation/flood_fill_ink_drop_ripple.h",
27 "animation/ink_drop.h", 29 "animation/ink_drop.h",
28 "animation/ink_drop_animation_ended_reason.cc", 30 "animation/ink_drop_animation_ended_reason.cc",
29 "animation/ink_drop_animation_ended_reason.h", 31 "animation/ink_drop_animation_ended_reason.h",
30 "animation/ink_drop_highlight.cc", 32 "animation/ink_drop_highlight.cc",
31 "animation/ink_drop_highlight.h", 33 "animation/ink_drop_highlight.h",
32 "animation/ink_drop_highlight_observer.h", 34 "animation/ink_drop_highlight_observer.h",
33 "animation/ink_drop_host.h", 35 "animation/ink_drop_host.h",
34 "animation/ink_drop_host_view.cc", 36 "animation/ink_drop_host_view.cc",
35 "animation/ink_drop_host_view.h", 37 "animation/ink_drop_host_view.h",
36 "animation/ink_drop_impl.cc", 38 "animation/ink_drop_impl.cc",
37 "animation/ink_drop_impl.h", 39 "animation/ink_drop_impl.h",
38 "animation/ink_drop_painted_layer_delegates.cc", 40 "animation/ink_drop_painted_layer_delegates.cc",
39 "animation/ink_drop_painted_layer_delegates.h", 41 "animation/ink_drop_painted_layer_delegates.h",
40 "animation/ink_drop_ripple.cc", 42 "animation/ink_drop_ripple.cc",
41 "animation/ink_drop_ripple.h", 43 "animation/ink_drop_ripple.h",
42 "animation/ink_drop_ripple_observer.h", 44 "animation/ink_drop_ripple_observer.h",
43 "animation/ink_drop_state.cc", 45 "animation/ink_drop_state.cc",
44 "animation/ink_drop_state.h", 46 "animation/ink_drop_state.h",
45 "animation/ink_drop_stub.cc", 47 "animation/ink_drop_stub.cc",
46 "animation/ink_drop_stub.h", 48 "animation/ink_drop_stub.h",
47 "animation/scroll_animator.cc", 49 "animation/scroll_animator.cc",
48 "animation/scroll_animator.h", 50 "animation/scroll_animator.h",
49 "animation/square_ink_drop_ripple.cc", 51 "animation/square_ink_drop_ripple.cc",
50 "animation/square_ink_drop_ripple.h", 52 "animation/square_ink_drop_ripple.h",
53 "attributes.cc",
54 "attributes.h",
51 "background.cc", 55 "background.cc",
52 "background.h", 56 "background.h",
53 "border.cc", 57 "border.cc",
54 "border.h", 58 "border.h",
55 "bubble/bubble_border.cc", 59 "bubble/bubble_border.cc",
56 "bubble/bubble_border.h", 60 "bubble/bubble_border.h",
57 "bubble/bubble_dialog_delegate.cc", 61 "bubble/bubble_dialog_delegate.cc",
58 "bubble/bubble_dialog_delegate.h", 62 "bubble/bubble_dialog_delegate.h",
59 "bubble/bubble_frame_view.cc", 63 "bubble/bubble_frame_view.cc",
60 "bubble/bubble_frame_view.h", 64 "bubble/bubble_frame_view.h",
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 "controls/tree/tree_view_controller.h", 254 "controls/tree/tree_view_controller.h",
251 "debug_utils.cc", 255 "debug_utils.cc",
252 "debug_utils.h", 256 "debug_utils.h",
253 "drag_controller.h", 257 "drag_controller.h",
254 "drag_utils.cc", 258 "drag_utils.cc",
255 "drag_utils.h", 259 "drag_utils.h",
256 "drag_utils_mac.mm", 260 "drag_utils_mac.mm",
257 "event_monitor.h", 261 "event_monitor.h",
258 "event_monitor_mac.h", 262 "event_monitor_mac.h",
259 "event_monitor_mac.mm", 263 "event_monitor_mac.mm",
264 "fill_attribute.cc",
265 "fill_attribute.h",
260 "focus/external_focus_tracker.cc", 266 "focus/external_focus_tracker.cc",
261 "focus/external_focus_tracker.h", 267 "focus/external_focus_tracker.h",
262 "focus/focus_manager.cc", 268 "focus/focus_manager.cc",
263 "focus/focus_manager.h", 269 "focus/focus_manager.h",
264 "focus/focus_manager_delegate.h", 270 "focus/focus_manager_delegate.h",
265 "focus/focus_manager_factory.cc", 271 "focus/focus_manager_factory.cc",
266 "focus/focus_manager_factory.h", 272 "focus/focus_manager_factory.h",
267 "focus/focus_search.cc", 273 "focus/focus_search.cc",
268 "focus/focus_search.h", 274 "focus/focus_search.h",
269 "focus/view_storage.cc", 275 "focus/view_storage.cc",
270 "focus/view_storage.h", 276 "focus/view_storage.h",
271 "focus/widget_focus_manager.cc", 277 "focus/widget_focus_manager.cc",
272 "focus/widget_focus_manager.h", 278 "focus/widget_focus_manager.h",
279 "layout/align_layout.cc",
280 "layout/align_layout.h",
273 "layout/box_layout.cc", 281 "layout/box_layout.cc",
274 "layout/box_layout.h", 282 "layout/box_layout.h",
275 "layout/fill_layout.cc", 283 "layout/fill_layout.cc",
276 "layout/fill_layout.h", 284 "layout/fill_layout.h",
277 "layout/grid_layout.cc", 285 "layout/grid_layout.cc",
278 "layout/grid_layout.h", 286 "layout/grid_layout.h",
279 "layout/layout_constants.h", 287 "layout/layout_constants.h",
280 "layout/layout_manager.cc", 288 "layout/layout_manager.cc",
281 "layout/layout_manager.h", 289 "layout/layout_manager.h",
282 "linux_ui/linux_ui.cc", 290 "linux_ui/linux_ui.cc",
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 "accessibility/native_view_accessibility_win_unittest.cc", 808 "accessibility/native_view_accessibility_win_unittest.cc",
801 "accessible_pane_view_unittest.cc", 809 "accessible_pane_view_unittest.cc",
802 "animation/bounds_animator_unittest.cc", 810 "animation/bounds_animator_unittest.cc",
803 "animation/flood_fill_ink_drop_ripple_unittest.cc", 811 "animation/flood_fill_ink_drop_ripple_unittest.cc",
804 "animation/ink_drop_highlight_unittest.cc", 812 "animation/ink_drop_highlight_unittest.cc",
805 "animation/ink_drop_host_view_unittest.cc", 813 "animation/ink_drop_host_view_unittest.cc",
806 "animation/ink_drop_impl_unittest.cc", 814 "animation/ink_drop_impl_unittest.cc",
807 "animation/ink_drop_ripple_unittest.cc", 815 "animation/ink_drop_ripple_unittest.cc",
808 "animation/ink_drop_unittest.cc", 816 "animation/ink_drop_unittest.cc",
809 "animation/square_ink_drop_ripple_unittest.cc", 817 "animation/square_ink_drop_ripple_unittest.cc",
818 "attributes_unittest.cc",
810 "border_unittest.cc", 819 "border_unittest.cc",
811 "bubble/bubble_border_unittest.cc", 820 "bubble/bubble_border_unittest.cc",
812 "bubble/bubble_dialog_delegate_unittest.cc", 821 "bubble/bubble_dialog_delegate_unittest.cc",
813 "bubble/bubble_frame_view_unittest.cc", 822 "bubble/bubble_frame_view_unittest.cc",
814 "bubble/bubble_window_targeter_unittest.cc", 823 "bubble/bubble_window_targeter_unittest.cc",
815 "cocoa/bridged_native_widget_unittest.mm", 824 "cocoa/bridged_native_widget_unittest.mm",
816 "cocoa/cocoa_mouse_capture_unittest.mm", 825 "cocoa/cocoa_mouse_capture_unittest.mm",
817 "cocoa/drag_drop_client_mac_unittest.mm", 826 "cocoa/drag_drop_client_mac_unittest.mm",
818 "controls/button/blue_button_unittest.cc", 827 "controls/button/blue_button_unittest.cc",
819 "controls/button/custom_button_unittest.cc", 828 "controls/button/custom_button_unittest.cc",
(...skipping 21 matching lines...) Expand all
841 "controls/tabbed_pane/tabbed_pane_unittest.cc", 850 "controls/tabbed_pane/tabbed_pane_unittest.cc",
842 "controls/table/table_utils_unittest.cc", 851 "controls/table/table_utils_unittest.cc",
843 "controls/table/table_view_unittest.cc", 852 "controls/table/table_view_unittest.cc",
844 "controls/table/test_table_model.cc", 853 "controls/table/test_table_model.cc",
845 "controls/table/test_table_model.h", 854 "controls/table/test_table_model.h",
846 "controls/textfield/textfield_model_unittest.cc", 855 "controls/textfield/textfield_model_unittest.cc",
847 "controls/tree/tree_view_unittest.cc", 856 "controls/tree/tree_view_unittest.cc",
848 "event_monitor_unittest.cc", 857 "event_monitor_unittest.cc",
849 "focus/focus_manager_unittest.cc", 858 "focus/focus_manager_unittest.cc",
850 "focus/focus_traversal_unittest.cc", 859 "focus/focus_traversal_unittest.cc",
860 "layout/align_layout_unittest.cc",
861 "layout/anchor_layout_unittest.cc",
851 "layout/box_layout_unittest.cc", 862 "layout/box_layout_unittest.cc",
852 "layout/grid_layout_unittest.cc", 863 "layout/grid_layout_unittest.cc",
853 "rect_based_targeting_utils_unittest.cc", 864 "rect_based_targeting_utils_unittest.cc",
854 "view_model_unittest.cc", 865 "view_model_unittest.cc",
855 "view_model_utils_unittest.cc", 866 "view_model_utils_unittest.cc",
856 "view_targeter_unittest.cc", 867 "view_targeter_unittest.cc",
857 "view_unittest.cc", 868 "view_unittest.cc",
858 "widget/native_widget_mac_accessibility_unittest.mm", 869 "widget/native_widget_mac_accessibility_unittest.mm",
859 "widget/native_widget_mac_unittest.mm", 870 "widget/native_widget_mac_unittest.mm",
860 "widget/native_widget_unittest.cc", 871 "widget/native_widget_unittest.cc",
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
1012 "//ui/base:test_support", 1023 "//ui/base:test_support",
1013 "//ui/compositor", 1024 "//ui/compositor",
1014 "//ui/events:test_support", 1025 "//ui/events:test_support",
1015 "//ui/gl:test_support", 1026 "//ui/gl:test_support",
1016 "//ui/resources", 1027 "//ui/resources",
1017 "//ui/resources:ui_test_pak", 1028 "//ui/resources:ui_test_pak",
1018 "//ui/strings", 1029 "//ui/strings",
1019 ] 1030 ]
1020 } 1031 }
1021 } 1032 }
OLDNEW
« no previous file with comments | « base/set_template_unittest.cc ('k') | ui/views/anchor_attribute.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698