| Index: chrome/browser/ui/BUILD.gn
|
| diff --git a/chrome/browser/ui/BUILD.gn b/chrome/browser/ui/BUILD.gn
|
| index 538f50aabacd76ca0e8f3aafcc436061fdf6ba35..414174e7de19b6572bb3865a0ead708384ff22d6 100644
|
| --- a/chrome/browser/ui/BUILD.gn
|
| +++ b/chrome/browser/ui/BUILD.gn
|
| @@ -46,6 +46,7 @@ static_library("ui") {
|
| "//chrome/common/net",
|
| "//components/app_modal",
|
| "//components/auto_login_parser",
|
| + "//components/autofill/core/browser",
|
| "//components/dom_distiller/webui",
|
| "//components/feedback/proto",
|
| "//components/history/core/browser:proto",
|
| @@ -420,21 +421,15 @@ static_library("ui") {
|
| ".",
|
| "//chrome")
|
| }
|
| - if (enable_autofill_dialog) {
|
| - sources +=
|
| - rebase_path(gypi_values.chrome_browser_ui_autofill_dialog_sources,
|
| - ".",
|
| - "//chrome")
|
| - if (!is_android && !is_ios) {
|
| - sources += rebase_path(
|
| - gypi_values.chrome_browser_ui_autofill_dialog_non_mobile_sources,
|
| - ".",
|
| - "//chrome")
|
| - deps += [
|
| - "//third_party/libaddressinput",
|
| - "//third_party/libaddressinput:strings",
|
| - ]
|
| - }
|
| + if (enable_autofill_dialog && !is_android && !is_ios) {
|
| + sources += rebase_path(
|
| + gypi_values.chrome_browser_ui_autofill_dialog_non_mobile_sources,
|
| + ".",
|
| + "//chrome")
|
| + deps += [
|
| + "//third_party/libaddressinput",
|
| + "//third_party/libaddressinput:strings",
|
| + ]
|
| }
|
| if (enable_extensions) {
|
| deps += [
|
|
|