Chromium Code Reviews| Index: chromecast/common/media/BUILD.gn |
| diff --git a/chromecast/common/media/BUILD.gn b/chromecast/common/media/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5bb55be190078d34a55cfa723d4d197049b4f3d1 |
| --- /dev/null |
| +++ b/chromecast/common/media/BUILD.gn |
| @@ -0,0 +1,31 @@ |
| +# Copyright 2015 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("media") { |
| + sources = [ |
| + "cast_message_generator.cc", |
| + "cast_message_generator.h", |
| + "cast_messages.h", |
| + "cma_ipc_common.h", |
| + "cma_message_generator.cc", |
| + "cma_message_generator.h", |
| + "cma_messages.h", |
| + "cma_messages.h", |
|
bcf_google
2015/08/05 00:15:13
Is this supposed to be duplicated?
slan
2015/08/05 00:19:25
Nice catch!
|
| + "cma_param_traits.cc", |
| + "cma_param_traits.h", |
| + "cma_param_traits_macros.h", |
| + "shared_memory_chunk.cc", |
| + "shared_memory_chunk.h", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//chromecast/media", |
| + "//content/public/common", |
| + "//ipc", |
| + "//media", |
| + "//media:shared_memory_support", |
| + "//ui/gfx/ipc", |
| + ] |
| +} |