Chromium Code Reviews| 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", |
| + ] |
| +} |