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

Unified Diff: extensions/common/BUILD.gn

Issue 2697463002: Convert utility process extension Unpacker IPC to mojo (Closed)
Patch Set: Take #3, use [Native] enum param traits. 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 edbf276efd3479624a13782607e64f3dc1fa85c4..3e12adb9be9b7e718f92094a4cfb85716f4676b7 100644
--- a/extensions/common/BUILD.gn
+++ b/extensions/common/BUILD.gn
@@ -19,11 +19,17 @@ source_set("common_constants") {
if (enable_extensions) {
mojom("mojo") {
sources = [
+ "extension_unpacker.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
@@ -92,6 +98,7 @@ if (enable_extensions) {
"extension_urls.cc",
"extension_urls.h",
"extension_utility_messages.h",
+ "extension_utility_types.h",
"extensions_aliases.cc",
"extensions_aliases.h",
"extensions_client.cc",
@@ -180,6 +187,8 @@ if (enable_extensions) {
"manifest_handlers/web_accessible_resources_info.h",
"manifest_handlers/webview_info.cc",
"manifest_handlers/webview_info.h",
+ "manifest_location_param_traits.cc",
+ "manifest_location_param_traits.h",
"manifest_url_handlers.cc",
"manifest_url_handlers.h",
"message_bundle.cc",

Powered by Google App Engine
This is Rietveld 408576698