| 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("//build/config/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//chromecast/chromecast.gni") | 6 import("//chromecast/chromecast.gni") |
| 7 | 7 |
| 8 source_set("backend") { | 8 source_set("backend") { |
| 9 sources = [ | 9 sources = [ |
| 10 "audio_decoder_wrapper.cc", | |
| 11 "audio_decoder_wrapper.h", | |
| 12 "media_pipeline_backend_factory.cc", | 10 "media_pipeline_backend_factory.cc", |
| 13 "media_pipeline_backend_factory.h", | 11 "media_pipeline_backend_factory.h", |
| 14 "media_pipeline_backend_manager.cc", | 12 "media_pipeline_backend_manager.cc", |
| 15 "media_pipeline_backend_manager.h", | 13 "media_pipeline_backend_manager.h", |
| 16 "media_pipeline_backend_wrapper.cc", | 14 "media_pipeline_backend_wrapper.cc", |
| 17 "media_pipeline_backend_wrapper.h", | 15 "media_pipeline_backend_wrapper.h", |
| 18 ] | 16 ] |
| 19 | 17 |
| 20 public_deps = [ | 18 public_deps = [ |
| 21 "//chromecast/public", | 19 "//chromecast/public", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 sources = [ | 99 sources = [ |
| 102 "video_decoder_null.cc", | 100 "video_decoder_null.cc", |
| 103 "video_decoder_null.h", | 101 "video_decoder_null.h", |
| 104 ] | 102 ] |
| 105 | 103 |
| 106 deps = [ | 104 deps = [ |
| 107 "//base", | 105 "//base", |
| 108 "//chromecast/public/media", | 106 "//chromecast/public/media", |
| 109 ] | 107 ] |
| 110 } | 108 } |
| OLD | NEW |