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

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

Issue 2143893002: Purge the App Launcher code from Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 4 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
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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("app_list") { 8 component("app_list") {
9 sources = [ 9 sources = [
10 "app_list_constants.cc", 10 "app_list_constants.cc",
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 "views/app_list_page.h", 116 "views/app_list_page.h",
117 "views/app_list_view.cc", 117 "views/app_list_view.cc",
118 "views/app_list_view.h", 118 "views/app_list_view.h",
119 "views/app_list_view_observer.h", 119 "views/app_list_view_observer.h",
120 "views/apps_container_view.cc", 120 "views/apps_container_view.cc",
121 "views/apps_container_view.h", 121 "views/apps_container_view.h",
122 "views/apps_grid_view.cc", 122 "views/apps_grid_view.cc",
123 "views/apps_grid_view.h", 123 "views/apps_grid_view.h",
124 "views/apps_grid_view_delegate.h", 124 "views/apps_grid_view_delegate.h",
125 "views/apps_grid_view_folder_delegate.h", 125 "views/apps_grid_view_folder_delegate.h",
126 "views/cached_label.cc",
127 "views/cached_label.h",
128 "views/contents_view.cc", 126 "views/contents_view.cc",
129 "views/contents_view.h", 127 "views/contents_view.h",
130 "views/custom_launcher_page_view.cc", 128 "views/custom_launcher_page_view.cc",
131 "views/custom_launcher_page_view.h", 129 "views/custom_launcher_page_view.h",
132 "views/folder_background_view.cc", 130 "views/folder_background_view.cc",
133 "views/folder_background_view.h", 131 "views/folder_background_view.h",
134 "views/folder_header_view.cc", 132 "views/folder_header_view.cc",
135 "views/folder_header_view.h", 133 "views/folder_header_view.h",
136 "views/folder_header_view_delegate.h", 134 "views/folder_header_view_delegate.h",
137 "views/image_shadow_animator.cc", 135 "views/image_shadow_animator.cc",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 } 179 }
182 180
183 static_library("test_support") { 181 static_library("test_support") {
184 sources = [ 182 sources = [
185 "test/app_list_test_model.cc", 183 "test/app_list_test_model.cc",
186 "test/app_list_test_model.h", 184 "test/app_list_test_model.h",
187 "test/app_list_test_view_delegate.cc", 185 "test/app_list_test_view_delegate.cc",
188 "test/app_list_test_view_delegate.h", 186 "test/app_list_test_view_delegate.h",
189 "test/test_search_result.cc", 187 "test/test_search_result.cc",
190 "test/test_search_result.h", 188 "test/test_search_result.h",
189 "views/test/app_list_view_test_api.cc",
190 "views/test/app_list_view_test_api.h",
191 ] 191 ]
192 192
193 deps = [ 193 deps = [
194 ":app_list", 194 ":app_list",
195 "//base", 195 "//base",
196 "//ui/gfx", 196 "//ui/gfx",
197 "//ui/gfx/geometry", 197 "//ui/gfx/geometry",
198 ] 198 ]
199 } 199 }
200 200
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 "views/speech_view_unittest.cc", 286 "views/speech_view_unittest.cc",
287 "views/test/apps_grid_view_test_api.cc", 287 "views/test/apps_grid_view_test_api.cc",
288 "views/test/apps_grid_view_test_api.h", 288 "views/test/apps_grid_view_test_api.h",
289 ] 289 ]
290 deps += [ 290 deps += [
291 "//ui/views", 291 "//ui/views",
292 "//ui/views:test_support", 292 "//ui/views:test_support",
293 ] 293 ]
294 } 294 }
295 } 295 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698