Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("media") { | |
| 6 sources = [ | |
| 7 "cast_message_generator.cc", | |
| 8 "cast_message_generator.h", | |
| 9 "cast_messages.h", | |
| 10 "cma_ipc_common.h", | |
| 11 "cma_message_generator.cc", | |
| 12 "cma_message_generator.h", | |
| 13 "cma_messages.h", | |
| 14 "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!
| |
| 15 "cma_param_traits.cc", | |
| 16 "cma_param_traits.h", | |
| 17 "cma_param_traits_macros.h", | |
| 18 "shared_memory_chunk.cc", | |
| 19 "shared_memory_chunk.h", | |
| 20 ] | |
| 21 | |
| 22 deps = [ | |
| 23 "//base", | |
| 24 "//chromecast/media", | |
| 25 "//content/public/common", | |
| 26 "//ipc", | |
| 27 "//media", | |
| 28 "//media:shared_memory_support", | |
| 29 "//ui/gfx/ipc", | |
| 30 ] | |
| 31 } | |
| OLD | NEW |