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

Unified Diff: components/ukm/BUILD.gn

Issue 2882353002: Implement Ukm Mojo interface. (Closed)
Patch Set: Fix nits Created 3 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
« no previous file with comments | « chrome/renderer/BUILD.gn ('k') | components/ukm/public/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/ukm/BUILD.gn
diff --git a/components/ukm/BUILD.gn b/components/ukm/BUILD.gn
index a89c0c69e5e02c78af51007a4ba681a03aa0d7e7..700d2d589eb2b61f5d82c12feab259415dab98c2 100644
--- a/components/ukm/BUILD.gn
+++ b/components/ukm/BUILD.gn
@@ -40,6 +40,23 @@ static_library("ukm") {
]
}
+static_library("ukm_interface") {
+ sources = [
+ "ukm_interface.cc",
+ "ukm_interface.h",
+ ]
+
+ public_deps = [
+ "//base",
+ "//components/ukm/public/interfaces",
+ ]
+
+ deps = [
+ ":ukm",
+ "//mojo/public/cpp/bindings",
+ ]
+}
+
# Helper library for observing signals that we need to clear any local data.
static_library("observers") {
sources = [
« no previous file with comments | « chrome/renderer/BUILD.gn ('k') | components/ukm/public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698