| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 "//ui/base/ime", | 255 "//ui/base/ime", |
| 256 ] | 256 ] |
| 257 } | 257 } |
| 258 if (use_cups) { | 258 if (use_cups) { |
| 259 configs += [ "//printing:cups" ] | 259 configs += [ "//printing:cups" ] |
| 260 } | 260 } |
| 261 if (use_ash) { | 261 if (use_ash) { |
| 262 sources += | 262 sources += |
| 263 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") | 263 rebase_path(gypi_values.chrome_browser_ui_ash_sources, ".", "//chrome") |
| 264 sources += [ | 264 sources += [ |
| 265 "ash/context_menu.cc", |
| 266 "ash/context_menu.h", |
| 265 "ash/keyboard_ui_service.cc", | 267 "ash/keyboard_ui_service.cc", |
| 266 "ash/keyboard_ui_service.h", | 268 "ash/keyboard_ui_service.h", |
| 267 ] | 269 ] |
| 268 deps += [ | 270 deps += [ |
| 269 "//ash", | 271 "//ash", |
| 270 "//ash:ash_with_content", | 272 "//ash:ash_with_content", |
| 271 "//ash/strings", | 273 "//ash/strings", |
| 272 "//components/user_manager", | 274 "//components/user_manager", |
| 275 "//mash/shelf/public/interfaces", |
| 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") |
| 279 } | 282 } |
| 280 } else { # Not ash. | 283 } else { # Not ash. |
| 281 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, | 284 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, |
| 282 ".", | 285 ".", |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 "//chrome/browser", | 672 "//chrome/browser", |
| 670 "//content/public/browser", | 673 "//content/public/browser", |
| 671 "//content/public/common", | 674 "//content/public/common", |
| 672 "//content/test:test_support", | 675 "//content/test:test_support", |
| 673 "//net:test_support", | 676 "//net:test_support", |
| 674 "//skia", | 677 "//skia", |
| 675 "//testing/gtest", | 678 "//testing/gtest", |
| 676 "//ui/base", | 679 "//ui/base", |
| 677 ] | 680 ] |
| 678 } | 681 } |
| OLD | NEW |