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

Unified Diff: components/data_reduction_proxy/content/common/BUILD.gn

Issue 2063683002: Migrate components/data_reduction_proxy to Mojo interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Eliminate usage of RPH observer Created 4 years, 4 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/data_reduction_proxy/content/common/BUILD.gn
diff --git a/components/data_reduction_proxy/content/common/BUILD.gn b/components/data_reduction_proxy/content/common/BUILD.gn
index cb33fbee498d4127521eb631ae39c2e1a9b92d07..f57cad2b73682b51a2b008eb086255c702cf6f32 100644
--- a/components/data_reduction_proxy/content/common/BUILD.gn
+++ b/components/data_reduction_proxy/content/common/BUILD.gn
@@ -2,15 +2,13 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-static_library("common") {
+import("//mojo/public/tools/bindings/mojom.gni")
+
+mojom("common") {
sources = [
- "data_reduction_proxy_messages.cc",
- "data_reduction_proxy_messages.h",
+ "data_reduction_proxy.mojom",
]
-
- deps = [
- "//content/public/common",
- "//ipc",
- "//net",
+ public_deps = [
+ "//net/base/mojo:interfaces",
]
}

Powered by Google App Engine
This is Rietveld 408576698