| 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_impl.cc", | 7 "audio_pipeline_impl.cc", |
| 8 "audio_pipeline_impl.h", | 8 "audio_pipeline_impl.h", |
| 9 "av_pipeline_client.cc", | 9 "av_pipeline_client.cc", |
| 10 "av_pipeline_client.h", | 10 "av_pipeline_client.h", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "video_pipeline_impl.h", | 23 "video_pipeline_impl.h", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 public_deps = [ | 26 public_deps = [ |
| 27 "//chromecast/public", | 27 "//chromecast/public", |
| 28 "//chromecast/public/media", | 28 "//chromecast/public/media", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 deps = [ | 31 deps = [ |
| 32 "//base", | 32 "//base", |
| 33 "//chromecast/media/base", |
| 34 "//chromecast/media/cdm", |
| 33 "//chromecast/media/cma/backend", | 35 "//chromecast/media/cma/backend", |
| 34 "//chromecast/media/cma/base", | 36 "//chromecast/media/cma/base", |
| 35 "//chromecast/media/base", | |
| 36 "//chromecast/media/cdm", | |
| 37 "//crypto", | 37 "//crypto", |
| 38 "//crypto:platform", | 38 "//crypto:platform", |
| 39 "//media", | 39 "//media", |
| 40 "//third_party/boringssl", | 40 "//third_party/boringssl", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| OLD | NEW |