| Index: components/autofill/core/browser/BUILD.gn
|
| diff --git a/components/autofill/core/browser/BUILD.gn b/components/autofill/core/browser/BUILD.gn
|
| index 5c937b0ec2d21030e85939e2297ee4e956023120..2acee3043dd71b058cee101b39b9db263625a2fe 100644
|
| --- a/components/autofill/core/browser/BUILD.gn
|
| +++ b/components/autofill/core/browser/BUILD.gn
|
| @@ -2,6 +2,8 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//build/config/features.gni")
|
| +
|
| if (is_android) {
|
| import("//build/config/android/config.gni")
|
| autofill_enable_sync = !is_android_webview_build
|
| @@ -119,6 +121,8 @@ static_library("browser") {
|
| "state_names.h",
|
| "suggestion.cc",
|
| "suggestion.h",
|
| + "ui/autofill_dialog_types.cc",
|
| + "ui/autofill_dialog_types.h",
|
| "validation.cc",
|
| "validation.h",
|
| "wallet/real_pan_wallet_client.cc",
|
| @@ -190,6 +194,13 @@ static_library("browser") {
|
| "webdata/autofill_wallet_syncable_service.h",
|
| ]
|
| }
|
| +
|
| + if (enable_autofill_dialog) {
|
| + sources += [
|
| + "ui/autofill_dialog_common.cc",
|
| + "ui/autofill_dialog_common.h",
|
| + ]
|
| + }
|
| }
|
|
|
| static_library("test_support") {
|
|
|