| Index: chrome/test/BUILD.gn
|
| diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
|
| index 64744695a8132c8acfa42292ababc9af1436c044..224a5e0db1f7c963e4182acb268edb9d04f965eb 100644
|
| --- a/chrome/test/BUILD.gn
|
| +++ b/chrome/test/BUILD.gn
|
| @@ -899,7 +899,6 @@ if (!is_android) {
|
| "//chrome/common/extensions/api",
|
| "//chrome/renderer",
|
| "//components/autofill/content/browser:risk_proto",
|
| - "//components/autofill/content/browser/wallet:test_support",
|
| "//components/autofill/content/renderer:test_support",
|
| "//components/captive_portal:test_support",
|
| "//components/dom_distiller/content/browser",
|
| @@ -934,7 +933,6 @@ if (!is_android) {
|
| "//third_party/cld_2:cld2_platform_impl",
|
| "//third_party/icu",
|
| "//third_party/leveldatabase",
|
| - "//third_party/libaddressinput",
|
| "//third_party/libjingle",
|
| "//third_party/safe_browsing:test_support",
|
| "//third_party/webrtc/modules/desktop_capture",
|
| @@ -1272,7 +1270,10 @@ if (!is_android) {
|
| if (!is_android && !is_ios) {
|
| sources +=
|
| [ "../browser/copresence/chrome_whispernet_client_browsertest.cc" ]
|
| - deps += [ "//components/copresence" ]
|
| + deps += [
|
| + "//components/copresence",
|
| + "//third_party/libaddressinput",
|
| + ]
|
| }
|
| if (enable_app_list) {
|
| sources += rebase_path(
|
| @@ -1331,8 +1332,7 @@ if (!is_android) {
|
| "../renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc",
|
| ]
|
| }
|
| - if (!enable_autofill_dialog || is_android || is_ios) {
|
| - deps -= [ "//third_party/libaddressinput" ]
|
| + if (is_android || is_ios) {
|
| }
|
| if (enable_remoting) {
|
| sources += rebase_path(
|
| @@ -1668,7 +1668,6 @@ test("unit_tests") {
|
|
|
| if (!is_ios) {
|
| deps += [
|
| - "//components/autofill/content/browser/wallet:test_support",
|
| "//components/autofill/content/renderer:test_support",
|
| "//components/data_reduction_proxy/core/browser:test_support",
|
| "//components/data_use_measurement/core",
|
| @@ -1900,12 +1899,6 @@ test("unit_tests") {
|
| ".",
|
| "//chrome")
|
| }
|
| - if (enable_autofill_dialog && !is_android) {
|
| - sources += rebase_path(
|
| - chrome_tests_unit_gypi_values.chrome_unit_tests_autofill_dialog_sources,
|
| - ".",
|
| - "//chrome")
|
| - }
|
| if (enable_plugins) {
|
| sources += rebase_path(
|
| chrome_tests_unit_gypi_values.chrome_unit_tests_plugins_sources,
|
| @@ -2274,7 +2267,6 @@ if (is_win || (is_linux && !is_chromeos)) {
|
| "//chrome/browser",
|
| "//chrome/renderer",
|
| "//components/about_handler",
|
| - "//components/autofill/content/browser/wallet:test_support",
|
| "//components/autofill/content/renderer:test_support",
|
| "//content/test:browsertest_base",
|
| "//media/cast:test_support",
|
|
|