| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//chromecast/chromecast.gni") | 5 import("//chromecast/chromecast.gni") |
| 6 | 6 |
| 7 # CMA is not used on Android; exclude CMA-specific targets. | 7 # CMA is not used on Android; exclude CMA-specific targets. |
| 8 enable_cma = !is_android | 8 enable_cma = !is_android |
| 9 | 9 |
| 10 # GYP target: chromecast.gyp:cast_shell_media | 10 # GYP target: chromecast.gyp:cast_shell_media |
| 11 source_set("media") { | 11 source_set("media") { |
| 12 sources = [ | 12 sources = [ |
| 13 "cast_media_client.cc", |
| 14 "cast_media_client.h", |
| 13 "shared_memory_chunk.cc", | 15 "shared_memory_chunk.cc", |
| 14 "shared_memory_chunk.h", | 16 "shared_memory_chunk.h", |
| 15 ] | 17 ] |
| 16 | 18 |
| 17 deps = [ | 19 deps = [ |
| 18 "//base", | 20 "//base", |
| 21 "//chromecast/media/base", |
| 19 "//chromecast/media/cma/ipc", | 22 "//chromecast/media/cma/ipc", |
| 23 "//chromecast/public:public", |
| 24 "//media", |
| 20 ] | 25 ] |
| 21 | 26 |
| 22 public_deps = [ | 27 public_deps = [ |
| 23 ":cast_messages", | 28 ":cast_messages", |
| 24 ] | 29 ] |
| 25 | 30 |
| 26 if (enable_cma) { | 31 if (enable_cma) { |
| 27 public_deps += [ ":cma_messages" ] | 32 public_deps += [ ":cma_messages" ] |
| 28 } | 33 } |
| 29 | 34 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "//chromecast/media/cma/pipeline", | 78 "//chromecast/media/cma/pipeline", |
| 74 "//content/public/common", | 79 "//content/public/common", |
| 75 "//media", | 80 "//media", |
| 76 "//media:shared_memory_support", | 81 "//media:shared_memory_support", |
| 77 "//media/gpu/ipc/common", | 82 "//media/gpu/ipc/common", |
| 78 "//ui/gfx/ipc", | 83 "//ui/gfx/ipc", |
| 79 "//ui/gfx/ipc/skia", | 84 "//ui/gfx/ipc/skia", |
| 80 ] | 85 ] |
| 81 } | 86 } |
| 82 } | 87 } |
| OLD | NEW |