| Index: extensions/browser/api/cast_channel/BUILD.gn
|
| diff --git a/extensions/browser/api/cast_channel/BUILD.gn b/extensions/browser/api/cast_channel/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..319bffd409d809a903bfd3897932b3f3f2a7ca4e
|
| --- /dev/null
|
| +++ b/extensions/browser/api/cast_channel/BUILD.gn
|
| @@ -0,0 +1,31 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +source_set("cast_channel") {
|
| + sources = [
|
| + "cast_auth_util.cc",
|
| + "cast_auth_util.h",
|
| + "cast_channel_api.cc",
|
| + "cast_channel_api.h",
|
| + "cast_framer.cc",
|
| + "cast_framer.h",
|
| + "cast_message_util.cc",
|
| + "cast_message_util.h",
|
| + "cast_socket.cc",
|
| + "cast_socket.h",
|
| + "cast_transport.cc",
|
| + "cast_transport.h",
|
| + "keep_alive_delegate.cc",
|
| + "keep_alive_delegate.h",
|
| + "logger.cc",
|
| + "logger.h",
|
| + "logger_util.cc",
|
| + "logger_util.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//extensions/common/api",
|
| + "//extensions/common/api/cast_channel:cast_channel_proto",
|
| + ]
|
| +}
|
|
|