| 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 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 | 8 |
| 9 source_set("backend") { | 9 source_set("backend") { |
| 10 sources = [ | 10 sources = [ |
| 11 "media_pipeline_backend_factory.cc", | |
| 12 "media_pipeline_backend_factory.h", | 11 "media_pipeline_backend_factory.h", |
| 12 "media_pipeline_backend_factory_impl.cc", |
| 13 "media_pipeline_backend_factory_impl.h", |
| 13 "media_pipeline_backend_manager.cc", | 14 "media_pipeline_backend_manager.cc", |
| 14 "media_pipeline_backend_manager.h", | 15 "media_pipeline_backend_manager.h", |
| 15 "media_pipeline_backend_wrapper.cc", | 16 "media_pipeline_backend_wrapper.cc", |
| 16 "media_pipeline_backend_wrapper.h", | 17 "media_pipeline_backend_wrapper.h", |
| 17 ] | 18 ] |
| 18 | 19 |
| 19 public_deps = [ | 20 public_deps = [ |
| 20 "//chromecast/public", | 21 "//chromecast/public", |
| 21 "//chromecast/public/media", | 22 "//chromecast/public/media", |
| 22 ] | 23 ] |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 sources = [ | 106 sources = [ |
| 106 "video_decoder_null.cc", | 107 "video_decoder_null.cc", |
| 107 "video_decoder_null.h", | 108 "video_decoder_null.h", |
| 108 ] | 109 ] |
| 109 | 110 |
| 110 deps = [ | 111 deps = [ |
| 111 "//base", | 112 "//base", |
| 112 "//chromecast/public/media", | 113 "//chromecast/public/media", |
| 113 ] | 114 ] |
| 114 } | 115 } |
| OLD | NEW |