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("pipeline") { |
| 6 sources = [ |
| 7 "audio_pipeline.cc", |
| 8 "audio_pipeline.h", |
| 9 "audio_pipeline_impl.cc", |
| 10 "audio_pipeline_impl.h", |
| 11 "av_pipeline_client.cc", |
| 12 "av_pipeline_client.h", |
| 13 "av_pipeline_impl.cc", |
| 14 "av_pipeline_impl.h", |
| 15 "decrypt_util.cc", |
| 16 "decrypt_util.h", |
| 17 "load_type.h", |
| 18 "media_pipeline.h", |
| 19 "media_pipeline_client.cc", |
| 20 "media_pipeline_client.h", |
| 21 "media_pipeline_impl.cc", |
| 22 "media_pipeline_impl.h", |
| 23 "video_pipeline.cc", |
| 24 "video_pipeline.h", |
| 25 "video_pipeline_client.cc", |
| 26 "video_pipeline_client.h", |
| 27 "video_pipeline_impl.cc", |
| 28 "video_pipeline_impl.h", |
| 29 ] |
| 30 |
| 31 deps = [ |
| 32 "//base", |
| 33 "//chromecast/media/cma/backend", |
| 34 "//chromecast/media/cma/base", |
| 35 "//chromecast/media/base", |
| 36 "//chromecast/media/cdm", |
| 37 "//crypto", |
| 38 "//crypto:platform", |
| 39 "//media", |
| 40 "//third_party/boringssl", |
| 41 ] |
| 42 |
| 43 configs += [ "//chromecast:config" ] |
| 44 } |
OLD | NEW |