| Index: components/browsing_data/core/BUILD.gn
|
| diff --git a/components/browsing_data/core/BUILD.gn b/components/browsing_data/core/BUILD.gn
|
| index 927ce1259ecc8669bea7b752c371f521bc1ef094..aa7e7db563bfba1442582f5958c44b27fdffce68 100644
|
| --- a/components/browsing_data/core/BUILD.gn
|
| +++ b/components/browsing_data/core/BUILD.gn
|
| @@ -28,8 +28,10 @@ static_library("core") {
|
| "//components/history/core/browser",
|
| "//components/password_manager/core/browser",
|
| "//components/prefs:prefs",
|
| + "//components/strings",
|
| "//components/sync",
|
| "//components/webdata/common",
|
| + "//ui/base",
|
| ]
|
| }
|
|
|
| @@ -41,3 +43,17 @@ if (is_android) {
|
| ]
|
| }
|
| }
|
| +
|
| +source_set("unit_tests") {
|
| + testonly = true
|
| + sources = [
|
| + "browsing_data_utils_unittest.cc",
|
| + ]
|
| +
|
| + deps = [
|
| + ":core",
|
| + "//base",
|
| + "//components/autofill/core/browser:browser",
|
| + "//testing/gtest",
|
| + ]
|
| +}
|
|
|