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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # 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
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//mojo/public/tools/bindings/mojom.gni")
6
7 # Implements the browser-side portions of the BlobChannel.
8 source_set("blob_channel") {
9 sources = [
10 "blob_channel_mojo_impl.cc",
11 "blob_channel_mojo_impl.h",
12 ]
13 deps = [
14 ":blob_channel_mojo",
15 ]
16 }
17
18 mojom("blob_channel_mojo") {
19 sources = [
20 "blob_channel.mojom",
21 ]
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698