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

Unified Diff: extensions/common/BUILD.gn

Issue 2697463002: Convert utility process extension Unpacker IPC to mojo (Closed)
Patch Set: Take #4, declare the IPC enum traits in the message file, try build fix. 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
Index: extensions/common/BUILD.gn
diff --git a/extensions/common/BUILD.gn b/extensions/common/BUILD.gn
index 97f392b9713423682f50521b2f0c95e41deee316..fcc4a1ea391cacd6b539c2b7e9add5898fd01586 100644
--- a/extensions/common/BUILD.gn
+++ b/extensions/common/BUILD.gn
@@ -19,12 +19,18 @@ source_set("common_constants") {
if (enable_extensions) {
mojom("mojo") {
sources = [
+ "extension_unpacker.mojom",
"mojo/app_window.mojom",
"mojo/keep_alive.mojom",
]
+
if (proprietary_codecs && enable_wifi_display) {
sources += [ "mojo/wifi_display_session_service.mojom" ]
}
+
+ public_deps = [
+ "//mojo/common:common_custom_types",
+ ]
}
# This must be a static library because extensions common depends on

Powered by Google App Engine
This is Rietveld 408576698