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

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 1770993002: wip: Refactoring Ash's AppListController, moving the bulk of the logic to chrome/browser/ui/ash/app… Base URL: https://chromium.googlesource.com/chromium/src.git@small_5_apps
Patch Set: AppListShower to new component: //ui/app_list/shower, GetViewDelegate() in GetViewDelegate(), test … Created 4 years, 8 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/common/features.gni") 8 import("//chrome/common/features.gni")
9 9
10 gypi_values = exec_script("//build/gypi_to_gn.py", 10 gypi_values = exec_script("//build/gypi_to_gn.py",
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") 252 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome")
253 sources += [ 253 sources += [
254 "ash/keyboard_ui_service.cc", 254 "ash/keyboard_ui_service.cc",
255 "ash/keyboard_ui_service.h", 255 "ash/keyboard_ui_service.h",
256 ] 256 ]
257 deps += [ 257 deps += [
258 "//ash", 258 "//ash",
259 "//ash:ash_with_content", 259 "//ash:ash_with_content",
260 "//ash/strings", 260 "//ash/strings",
261 "//components/user_manager", 261 "//components/user_manager",
262 "//ui/app_list/shower",
262 "//ui/keyboard:mojom", 263 "//ui/keyboard:mojom",
263 ] 264 ]
264 if (!is_chromeos) { 265 if (!is_chromeos) {
265 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, 266 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos,
266 ".", 267 ".",
267 "//chrome") 268 "//chrome")
268 } 269 }
269 } else { # Not ash. 270 } else { # Not ash.
270 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, 271 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources,
271 ".", 272 ".",
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 "//chrome/browser", 664 "//chrome/browser",
664 "//content/public/browser", 665 "//content/public/browser",
665 "//content/public/common", 666 "//content/public/common",
666 "//content/test:test_support", 667 "//content/test:test_support",
667 "//net:test_support", 668 "//net:test_support",
668 "//skia", 669 "//skia",
669 "//testing/gtest", 670 "//testing/gtest",
670 "//ui/base", 671 "//ui/base",
671 ] 672 ]
672 } 673 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698