Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |