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

Side by Side Diff: ash/BUILD.gn

Issue 2734933004: ash: Use SessionController instead of SessionStateDelegate (Closed)
Patch Set: rebase to get WorkspaceLayoutManagerSoloTest change Created 3 years, 9 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 | « no previous file | ash/accelerators/accelerator_controller_unittest.cc » ('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 9
10 # Historical note: Ash shipped on Windows for a couple years to support 10 # Historical note: Ash shipped on Windows for a couple years to support
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 "common/mojo_interface_factory.h", 126 "common/mojo_interface_factory.h",
127 "common/multi_profile_uma.cc", 127 "common/multi_profile_uma.cc",
128 "common/multi_profile_uma.h", 128 "common/multi_profile_uma.h",
129 "common/new_window_controller.cc", 129 "common/new_window_controller.cc",
130 "common/new_window_controller.h", 130 "common/new_window_controller.h",
131 "common/palette_delegate.h", 131 "common/palette_delegate.h",
132 "common/scoped_root_window_for_new_windows.cc", 132 "common/scoped_root_window_for_new_windows.cc",
133 "common/scoped_root_window_for_new_windows.h", 133 "common/scoped_root_window_for_new_windows.h",
134 "common/session/session_controller.cc", 134 "common/session/session_controller.cc",
135 "common/session/session_controller.h", 135 "common/session/session_controller.h",
136 "common/session/session_state_delegate.cc",
137 "common/session/session_state_delegate.h", 136 "common/session/session_state_delegate.h",
138 "common/session/session_state_observer.cc", 137 "common/session/session_state_observer.cc",
139 "common/session/session_state_observer.h", 138 "common/session/session_state_observer.h",
140 "common/shelf/app_list_button.cc", 139 "common/shelf/app_list_button.cc",
141 "common/shelf/app_list_button.h", 140 "common/shelf/app_list_button.h",
142 "common/shelf/app_list_shelf_item_delegate.cc", 141 "common/shelf/app_list_shelf_item_delegate.cc",
143 "common/shelf/app_list_shelf_item_delegate.h", 142 "common/shelf/app_list_shelf_item_delegate.h",
144 "common/shelf/ink_drop_button_listener.h", 143 "common/shelf/ink_drop_button_listener.h",
145 "common/shelf/overflow_bubble.cc", 144 "common/shelf/overflow_bubble.cc",
146 "common/shelf/overflow_bubble.h", 145 "common/shelf/overflow_bubble.h",
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
990 testonly = true 989 testonly = true
991 sources = [ 990 sources = [
992 "../ui/views/test/test_views_delegate_aura.cc", 991 "../ui/views/test/test_views_delegate_aura.cc",
993 "shell/app_list.cc", 992 "shell/app_list.cc",
994 "shell/bubble.cc", 993 "shell/bubble.cc",
995 "shell/context_menu.cc", 994 "shell/context_menu.cc",
996 "shell/context_menu.h", 995 "shell/context_menu.h",
997 "shell/example_app_list_presenter.cc", 996 "shell/example_app_list_presenter.cc",
998 "shell/example_app_list_presenter.h", 997 "shell/example_app_list_presenter.h",
999 "shell/example_factory.h", 998 "shell/example_factory.h",
999 "shell/example_session_controller_client.cc",
1000 "shell/example_session_controller_client.h",
1000 "shell/lock_view.cc", 1001 "shell/lock_view.cc",
1001 "shell/panel_window.cc", 1002 "shell/panel_window.cc",
1002 "shell/panel_window.h", 1003 "shell/panel_window.h",
1003 "shell/shell_delegate_impl.cc", 1004 "shell/shell_delegate_impl.cc",
1004 "shell/shell_delegate_impl.h", 1005 "shell/shell_delegate_impl.h",
1005 "shell/toplevel_window.cc", 1006 "shell/toplevel_window.cc",
1006 "shell/toplevel_window.h", 1007 "shell/toplevel_window.h",
1007 "shell/widgets.cc", 1008 "shell/widgets.cc",
1008 "shell/window_watcher.cc", 1009 "shell/window_watcher.cc",
1009 "shell/window_watcher.h", 1010 "shell/window_watcher.h",
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
1503 "//content/public/app:both", 1504 "//content/public/app:both",
1504 "//device/bluetooth", 1505 "//device/bluetooth",
1505 ] 1506 ]
1506 1507
1507 data_deps = [ 1508 data_deps = [
1508 "//ash/strings:ash_test_strings", 1509 "//ash/strings:ash_test_strings",
1509 "//ash/resources:ash_test_resources_with_content_100_percent", 1510 "//ash/resources:ash_test_resources_with_content_100_percent",
1510 "//ash/resources:ash_test_resources_200_percent", 1511 "//ash/resources:ash_test_resources_200_percent",
1511 ] 1512 ]
1512 } 1513 }
OLDNEW
« no previous file with comments | « no previous file | ash/accelerators/accelerator_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698