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

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

Issue 2660813002: Add WidgetTest::GetAllWidgets() to find dialogs created by TestBrowserDialog. (Closed)
Patch Set: respond to comments Created 3 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
« no previous file with comments | « ui/aura/test/aura_test_helper.cc ('k') | ui/views/test/widget_test.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/base/ui_features.gni") 8 import("//ui/base/ui_features.gni")
9 import("//ui/ozone/ozone.gni") 9 import("//ui/ozone/ozone.gni")
10 10
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 "corewm/tooltip_controller_test_helper.h", 804 "corewm/tooltip_controller_test_helper.h",
805 "test/desktop_test_views_delegate_aura.cc", 805 "test/desktop_test_views_delegate_aura.cc",
806 "test/test_views_delegate_aura.cc", 806 "test/test_views_delegate_aura.cc",
807 "test/views_test_helper_aura.cc", 807 "test/views_test_helper_aura.cc",
808 "test/views_test_helper_aura.h", 808 "test/views_test_helper_aura.h",
809 "test/widget_test_aura.cc", 809 "test/widget_test_aura.cc",
810 ] 810 ]
811 deps += [ 811 deps += [
812 "//ui/aura", 812 "//ui/aura",
813 "//ui/aura:test_support", 813 "//ui/aura:test_support",
814 "//ui/views/mus",
814 "//ui/wm", 815 "//ui/wm",
815 ] 816 ]
816 if (use_x11 && !is_chromeos) { 817 if (use_x11 && !is_chromeos) {
817 sources += [ 818 sources += [
818 "test/desktop_screen_x11_test_api.cc", 819 "test/desktop_screen_x11_test_api.cc",
819 "test/desktop_screen_x11_test_api.h", 820 "test/desktop_screen_x11_test_api.h",
820 "test/test_desktop_screen_x11.cc", 821 "test/test_desktop_screen_x11.cc",
821 "test/test_desktop_screen_x11.h", 822 "test/test_desktop_screen_x11.h",
822 "test/ui_controls_factory_desktop_aurax11.cc", 823 "test/ui_controls_factory_desktop_aurax11.cc",
823 "test/ui_controls_factory_desktop_aurax11.h", 824 "test/ui_controls_factory_desktop_aurax11.h",
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 "controls/table/test_table_model.h", 904 "controls/table/test_table_model.h",
904 "controls/textfield/textfield_model_unittest.cc", 905 "controls/textfield/textfield_model_unittest.cc",
905 "controls/tree/tree_view_unittest.cc", 906 "controls/tree/tree_view_unittest.cc",
906 "event_monitor_unittest.cc", 907 "event_monitor_unittest.cc",
907 "focus/focus_manager_unittest.cc", 908 "focus/focus_manager_unittest.cc",
908 "focus/focus_traversal_unittest.cc", 909 "focus/focus_traversal_unittest.cc",
909 "layout/box_layout_unittest.cc", 910 "layout/box_layout_unittest.cc",
910 "layout/fill_layout_unittest.cc", 911 "layout/fill_layout_unittest.cc",
911 "layout/grid_layout_unittest.cc", 912 "layout/grid_layout_unittest.cc",
912 "rect_based_targeting_utils_unittest.cc", 913 "rect_based_targeting_utils_unittest.cc",
914 "test/widget_test_unittest.cc",
913 "view_model_unittest.cc", 915 "view_model_unittest.cc",
914 "view_model_utils_unittest.cc", 916 "view_model_utils_unittest.cc",
915 "view_targeter_unittest.cc", 917 "view_targeter_unittest.cc",
916 "view_unittest.cc", 918 "view_unittest.cc",
917 "widget/native_widget_mac_accessibility_unittest.mm", 919 "widget/native_widget_mac_accessibility_unittest.mm",
918 "widget/native_widget_mac_unittest.mm", 920 "widget/native_widget_mac_unittest.mm",
919 "widget/native_widget_unittest.cc", 921 "widget/native_widget_unittest.cc",
920 "widget/root_view_unittest.cc", 922 "widget/root_view_unittest.cc",
921 "widget/widget_unittest.cc", 923 "widget/widget_unittest.cc",
922 "widget/window_reorderer_unittest.cc", 924 "widget/window_reorderer_unittest.cc",
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
1072 "//ui/base:test_support", 1074 "//ui/base:test_support",
1073 "//ui/compositor", 1075 "//ui/compositor",
1074 "//ui/events:test_support", 1076 "//ui/events:test_support",
1075 "//ui/gl:test_support", 1077 "//ui/gl:test_support",
1076 "//ui/resources", 1078 "//ui/resources",
1077 "//ui/resources:ui_test_pak", 1079 "//ui/resources:ui_test_pak",
1078 "//ui/strings", 1080 "//ui/strings",
1079 ] 1081 ]
1080 } 1082 }
1081 } 1083 }
OLDNEW
« no previous file with comments | « ui/aura/test/aura_test_helper.cc ('k') | ui/views/test/widget_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698