| 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 # CMA is not used on Android; exclude CMA-specific targets. | 5 # CMA is not used on Android; exclude CMA-specific targets. |
| 6 enable_cma = !is_android | 6 enable_cma = !is_android |
| 7 | 7 |
| 8 # GYP target: chromecast.gyp:cast_shell_media | 8 # GYP target: chromecast.gyp:cast_shell_media |
| 9 source_set("media") { | 9 source_set("media") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "cma_param_traits.h", | 49 "cma_param_traits.h", |
| 50 "cma_param_traits_macros.h", | 50 "cma_param_traits_macros.h", |
| 51 ] | 51 ] |
| 52 | 52 |
| 53 deps = [ | 53 deps = [ |
| 54 "//chromecast/media/cma/pipeline", | 54 "//chromecast/media/cma/pipeline", |
| 55 "//content/public/common", | 55 "//content/public/common", |
| 56 "//media", | 56 "//media", |
| 57 "//media:shared_memory_support", | 57 "//media:shared_memory_support", |
| 58 "//ui/gfx/ipc", | 58 "//ui/gfx/ipc", |
| 59 "//ui/gfx/ipc/skia", |
| 59 ] | 60 ] |
| 60 } | 61 } |
| 61 } | 62 } |
| OLD | NEW |