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

Unified Diff: components/rappor/BUILD.gn

Issue 2376403003: Convert RapporRecorder to use mojo. (Closed)
Patch Set: Convert RapporRecorder to use mojo. Created 4 years, 2 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/rappor/BUILD.gn
diff --git a/components/rappor/BUILD.gn b/components/rappor/BUILD.gn
index 5b9e11dacea1862f37b4c22cf8d8a3c8f3ae5be8..be595ad2c3b92d24cc8ac506866602b4d85d1329 100644
--- a/components/rappor/BUILD.gn
+++ b/components/rappor/BUILD.gn
@@ -47,6 +47,23 @@ static_library("rappor") {
]
}
+static_library("rappor_recorder") {
+ sources = [
+ "rappor_recorder_impl.cc",
+ "rappor_recorder_impl.h",
+ ]
+
+ public_deps = [
+ "//base",
+ "//components/rappor/public/interfaces",
+ ]
+
+ deps = [
+ ":rappor",
+ "//mojo/public/cpp/bindings",
+ ]
+}
+
static_library("test_support") {
testonly = true
sources = [

Powered by Google App Engine
This is Rietveld 408576698