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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 } | 248 } |
249 if (use_cups) { | 249 if (use_cups) { |
250 configs += [ "//printing:cups" ] | 250 configs += [ "//printing:cups" ] |
251 } | 251 } |
252 if (use_ash) { | 252 if (use_ash) { |
253 sources += | 253 sources += |
254 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") | 254 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") |
255 sources += [ | 255 sources += [ |
256 "ash/app_list/app_list_presenter_service.cc", | 256 "ash/app_list/app_list_presenter_service.cc", |
257 "ash/app_list/app_list_presenter_service.h", | 257 "ash/app_list/app_list_presenter_service.h", |
| 258 "ash/chrome_wallpaper_manager.cc", |
| 259 "ash/chrome_wallpaper_manager.h", |
258 "ash/keyboard_ui_service.cc", | 260 "ash/keyboard_ui_service.cc", |
259 "ash/keyboard_ui_service.h", | 261 "ash/keyboard_ui_service.h", |
260 "ash/launcher/chrome_mash_shelf_controller.cc", | 262 "ash/launcher/chrome_mash_shelf_controller.cc", |
261 "ash/launcher/chrome_mash_shelf_controller.h", | 263 "ash/launcher/chrome_mash_shelf_controller.h", |
262 ] | 264 ] |
263 deps += [ | 265 deps += [ |
264 "//ash", | 266 "//ash", |
265 "//ash:ash_with_content", | 267 "//ash:ash_with_content", |
| 268 "//ash/mus/public/interfaces", |
266 "//ash/strings", | 269 "//ash/strings", |
267 "//components/user_manager", | 270 "//components/user_manager", |
268 "//mash/shelf/public/interfaces", | 271 "//mash/shelf/public/interfaces", |
269 "//skia/public", | 272 "//skia/public", |
270 "//ui/app_list/presenter", | 273 "//ui/app_list/presenter", |
271 "//ui/app_list/presenter:mojom", | 274 "//ui/app_list/presenter:mojom", |
272 "//ui/keyboard:mojom", | 275 "//ui/keyboard:mojom", |
273 ] | 276 ] |
274 if (!is_chromeos) { | 277 if (!is_chromeos) { |
275 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, | 278 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, |
(...skipping 417 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 |