| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 if (use_ash) { | 253 if (use_ash) { |
| 254 sources += | 254 sources += |
| 255 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") | 255 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") |
| 256 sources += [ | 256 sources += [ |
| 257 "ash/app_list/app_list_presenter_service.cc", | 257 "ash/app_list/app_list_presenter_service.cc", |
| 258 "ash/app_list/app_list_presenter_service.h", | 258 "ash/app_list/app_list_presenter_service.h", |
| 259 "ash/chrome_wallpaper_manager.cc", | 259 "ash/chrome_wallpaper_manager.cc", |
| 260 "ash/chrome_wallpaper_manager.h", | 260 "ash/chrome_wallpaper_manager.h", |
| 261 "ash/keyboard_ui_service.cc", | 261 "ash/keyboard_ui_service.cc", |
| 262 "ash/keyboard_ui_service.h", | 262 "ash/keyboard_ui_service.h", |
| 263 "ash/launcher/chrome_launcher_controller_mus.cc", |
| 264 "ash/launcher/chrome_launcher_controller_mus.h", |
| 263 "ash/launcher/chrome_mash_shelf_controller.cc", | 265 "ash/launcher/chrome_mash_shelf_controller.cc", |
| 264 "ash/launcher/chrome_mash_shelf_controller.h", | 266 "ash/launcher/chrome_mash_shelf_controller.h", |
| 265 ] | 267 ] |
| 266 deps += [ | 268 deps += [ |
| 267 "//ash", | 269 "//ash", |
| 268 "//ash:ash_with_content", | 270 "//ash:ash_with_content", |
| 269 "//ash/strings", | 271 "//ash/strings", |
| 270 "//ash/sysui/public/interfaces", | 272 "//ash/sysui/public/interfaces", |
| 271 "//components/user_manager", | 273 "//components/user_manager", |
| 272 "//mash/shelf/public/interfaces", | 274 "//mash/shelf/public/interfaces", |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 "//chrome/browser", | 697 "//chrome/browser", |
| 696 "//content/public/browser", | 698 "//content/public/browser", |
| 697 "//content/public/common", | 699 "//content/public/common", |
| 698 "//content/test:test_support", | 700 "//content/test:test_support", |
| 699 "//net:test_support", | 701 "//net:test_support", |
| 700 "//skia", | 702 "//skia", |
| 701 "//testing/gtest", | 703 "//testing/gtest", |
| 702 "//ui/base", | 704 "//ui/base", |
| 703 ] | 705 ] |
| 704 } | 706 } |
| OLD | NEW |