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_helper.cc", |
| 259 "ash/chrome_wallpaper_helper.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", |
266 "//ash/strings", | 268 "//ash/strings", |
267 "//components/user_manager", | 269 "//components/user_manager", |
| 270 "//mash/public/interfaces", |
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, |
276 ".", | 279 ".", |
277 "//chrome") | 280 "//chrome") |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 "//chrome/browser", | 694 "//chrome/browser", |
692 "//content/public/browser", | 695 "//content/public/browser", |
693 "//content/public/common", | 696 "//content/public/common", |
694 "//content/test:test_support", | 697 "//content/test:test_support", |
695 "//net:test_support", | 698 "//net:test_support", |
696 "//skia", | 699 "//skia", |
697 "//testing/gtest", | 700 "//testing/gtest", |
698 "//ui/base", | 701 "//ui/base", |
699 ] | 702 ] |
700 } | 703 } |
OLD | NEW |