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

Unified Diff: blimp/engine/mojo/BUILD.gn

Issue 1859753002: Blimp: create Mojo component for renderer/browser communication. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: blimp/engine/mojo/BUILD.gn
diff --git a/blimp/engine/mojo/BUILD.gn b/blimp/engine/mojo/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..06d9c6833ceee2878f5f5dbf5e5c3e6f9bbd3c53
--- /dev/null
+++ b/blimp/engine/mojo/BUILD.gn
@@ -0,0 +1,22 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
nyquist 2016/04/05 22:13:19 Did you mean to keep this or the other parts in //
Kevin M 2016/04/06 00:01:44 rm'd
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//mojo/public/tools/bindings/mojom.gni")
+
+# Implements the browser-side portions of the BlobChannel.
+source_set("blob_channel") {
+ sources = [
+ "blob_channel_mojo_impl.cc",
+ "blob_channel_mojo_impl.h",
+ ]
+ deps = [
+ ":blob_channel_mojo",
+ ]
+}
+
+mojom("blob_channel_mojo") {
+ sources = [
+ "blob_channel.mojom",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698