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

Unified Diff: components/pdf/common/BUILD.gn

Issue 2455543002: Convert PDF component IPC to mojo. (Closed)
Patch Set: Feedback Created 3 years, 9 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 | « components/pdf/browser/pdf_web_contents_helper.cc ('k') | components/pdf/common/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/pdf/common/BUILD.gn
diff --git a/components/pdf/common/BUILD.gn b/components/pdf/common/BUILD.gn
index adff35e0ba6aa6d004194a4d10a576fb81e840bc..c0aa0b380730712d86ea674207bb17cc9860e344 100644
--- a/components/pdf/common/BUILD.gn
+++ b/components/pdf/common/BUILD.gn
@@ -3,18 +3,21 @@
# found in the LICENSE file.
import("//build/config/features.gni")
+import("//mojo/public/tools/bindings/mojom.gni")
-static_library("common") {
+mojom("interfaces") {
sources = [
- "pdf_message_generator.cc",
- "pdf_message_generator.h",
- "pdf_messages.h",
+ "pdf.mojom",
]
- deps = [
- "//base",
- "//content/public/common",
- "//ipc",
- "//url",
+ public_deps = [
+ "//third_party/WebKit/public:mojo_bindings",
+ "//url/mojo:url_mojom_gurl",
]
+
+ overridden_deps = [ "//third_party/WebKit/public:mojo_bindings" ]
+ component_deps = [ "//content/public/common" ]
+
+ overridden_deps_blink = [ "//third_party/WebKit/public:mojo_bindings" ]
+ component_deps_blink = [ "//third_party/WebKit/Source/platform" ]
}
« no previous file with comments | « components/pdf/browser/pdf_web_contents_helper.cc ('k') | components/pdf/common/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698