OLD | NEW |
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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 } | 250 } |
251 if (use_cups) { | 251 if (use_cups) { |
252 configs += [ "//printing:cups" ] | 252 configs += [ "//printing:cups" ] |
253 } | 253 } |
254 if (use_ash) { | 254 if (use_ash) { |
255 sources += | 255 sources += |
256 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") | 256 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") |
257 sources += [ | 257 sources += [ |
258 "ash/app_list/app_list_presenter_service.cc", | 258 "ash/app_list/app_list_presenter_service.cc", |
259 "ash/app_list/app_list_presenter_service.h", | 259 "ash/app_list/app_list_presenter_service.h", |
| 260 "ash/chrome_wallpaper_manager.cc", |
| 261 "ash/chrome_wallpaper_manager.h", |
260 "ash/keyboard_ui_service.cc", | 262 "ash/keyboard_ui_service.cc", |
261 "ash/keyboard_ui_service.h", | 263 "ash/keyboard_ui_service.h", |
262 "ash/launcher/chrome_mash_shelf_controller.cc", | 264 "ash/launcher/chrome_mash_shelf_controller.cc", |
263 "ash/launcher/chrome_mash_shelf_controller.h", | 265 "ash/launcher/chrome_mash_shelf_controller.h", |
264 ] | 266 ] |
265 deps += [ | 267 deps += [ |
266 "//ash", | 268 "//ash", |
267 "//ash:ash_with_content", | 269 "//ash:ash_with_content", |
268 "//ash/strings", | 270 "//ash/strings", |
| 271 "//ash/sysui/public/interfaces", |
269 "//components/user_manager", | 272 "//components/user_manager", |
270 "//mash/shelf/public/interfaces", | 273 "//mash/shelf/public/interfaces", |
271 "//ui/app_list/presenter", | 274 "//ui/app_list/presenter", |
272 "//ui/app_list/presenter:mojom", | 275 "//ui/app_list/presenter:mojom", |
273 "//ui/keyboard:mojom", | 276 "//ui/keyboard:mojom", |
274 ] | 277 ] |
275 if (!is_chromeos) { | 278 if (!is_chromeos) { |
276 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, | 279 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, |
277 ".", | 280 ".", |
278 "//chrome") | 281 "//chrome") |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 "//chrome/browser", | 696 "//chrome/browser", |
694 "//content/public/browser", | 697 "//content/public/browser", |
695 "//content/public/common", | 698 "//content/public/common", |
696 "//content/test:test_support", | 699 "//content/test:test_support", |
697 "//net:test_support", | 700 "//net:test_support", |
698 "//skia", | 701 "//skia", |
699 "//testing/gtest", | 702 "//testing/gtest", |
700 "//ui/base", | 703 "//ui/base", |
701 ] | 704 ] |
702 } | 705 } |
OLD | NEW |