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

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

Issue 2525483002: Convert NaCl renderer-loader messages to mojo. (Closed)
Patch Set: rebase Created 4 years 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/nacl/common/BUILD.gn
diff --git a/components/nacl/common/BUILD.gn b/components/nacl/common/BUILD.gn
index 5440c723a484dfc4ed4c2c8a8cc68814691d6e19..36a0dbaed981d39e551e256ee9ba9e2853e0543b 100644
--- a/components/nacl/common/BUILD.gn
+++ b/components/nacl/common/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//build/config/features.gni")
+import("//mojo/public/tools/bindings/mojom.gni")
if (enable_nacl) {
# This is separate so it can be used by ../broker:nacl64.
@@ -15,8 +16,6 @@ if (enable_nacl) {
"nacl_messages.cc",
"nacl_messages.h",
"nacl_process_type.h",
- "nacl_renderer_messages.cc",
- "nacl_renderer_messages.h",
"nacl_sandbox_type.h",
"nacl_types.cc",
"nacl_types.h",
@@ -30,6 +29,7 @@ if (enable_nacl) {
deps = [
":minimal_content_dummy",
+ ":nacl_error_code",
"//base",
"//base:base_static",
"//ipc",
@@ -66,6 +66,7 @@ if (enable_nacl) {
public_deps = [
":minimal",
+ ":mojo_bindings",
":switches",
]
@@ -96,6 +97,18 @@ if (enable_nacl) {
"//base",
]
}
+
+ source_set("nacl_error_code") {
+ sources = [
+ "//native_client/src/trusted/service_runtime/nacl_error_code.h",
+ ]
+ }
+
+ mojom("mojo_bindings") {
+ sources = [
+ "nacl.mojom",
+ ]
+ }
}
# Depending on this allows targets to unconditionally include

Powered by Google App Engine
This is Rietveld 408576698