| 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 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") | 253 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") |
| 254 sources += [ | 254 sources += [ |
| 255 "ash/keyboard_ui_service.cc", | 255 "ash/keyboard_ui_service.cc", |
| 256 "ash/keyboard_ui_service.h", | 256 "ash/keyboard_ui_service.h", |
| 257 ] | 257 ] |
| 258 deps += [ | 258 deps += [ |
| 259 "//ash", | 259 "//ash", |
| 260 "//ash:ash_with_content", | 260 "//ash:ash_with_content", |
| 261 "//ash/strings", | 261 "//ash/strings", |
| 262 "//components/user_manager", | 262 "//components/user_manager", |
| 263 "//ui/app_list/shower", |
| 263 "//ui/keyboard:mojom", | 264 "//ui/keyboard:mojom", |
| 264 ] | 265 ] |
| 265 if (!is_chromeos) { | 266 if (!is_chromeos) { |
| 266 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, | 267 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, |
| 267 ".", | 268 ".", |
| 268 "//chrome") | 269 "//chrome") |
| 269 } | 270 } |
| 270 } else { # Not ash. | 271 } else { # Not ash. |
| 271 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, | 272 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, |
| 272 ".", | 273 ".", |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 "//chrome/browser", | 665 "//chrome/browser", |
| 665 "//content/public/browser", | 666 "//content/public/browser", |
| 666 "//content/public/common", | 667 "//content/public/common", |
| 667 "//content/test:test_support", | 668 "//content/test:test_support", |
| 668 "//net:test_support", | 669 "//net:test_support", |
| 669 "//skia", | 670 "//skia", |
| 670 "//testing/gtest", | 671 "//testing/gtest", |
| 671 "//ui/base", | 672 "//ui/base", |
| 672 ] | 673 ] |
| 673 } | 674 } |
| OLD | NEW |