Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: components/browsing_data_ui/BUILD.gn

Issue 1983073002: Query the existence other forms of browsing history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments, re-added protobuf Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/browsing_data_ui/BUILD.gn
diff --git a/components/browsing_data_ui/BUILD.gn b/components/browsing_data_ui/BUILD.gn
index 3faf508eb15deef98ab977d69f5e1fe77e08a4cf..241e32dfefc77ede49fd156d7330741c29cc02c5 100644
--- a/components/browsing_data_ui/BUILD.gn
+++ b/components/browsing_data_ui/BUILD.gn
@@ -10,7 +10,27 @@ static_library("browsing_data_ui") {
deps = [
"//base",
- "//components/browser_sync/browser",
"//components/history/core/browser",
+ "//components/sync_driver:sync_driver",
+ "//components/version_info",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "history_notice_utils_unittest.cc",
+ ]
+
+ deps = [
+ ":browsing_data_ui",
+ "//base",
+ "//components/history/core/test:test",
+ "//components/signin/core/browser:test_support",
+ "//components/sync_driver:test_support",
+ "//components/version_info:version_info",
+ "//net",
+ "//sync/protocol:protocol",
+ "//testing/gtest",
]
}

Powered by Google App Engine
This is Rietveld 408576698