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