| 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("base") { | 5 source_set("base") { |
| 6 sources = [ | 6 sources = [ |
| 7 "balanced_media_task_runner_factory.cc", | 7 "balanced_media_task_runner_factory.cc", |
| 8 "balanced_media_task_runner_factory.h", | 8 "balanced_media_task_runner_factory.h", |
| 9 "buffering_controller.cc", | 9 "buffering_controller.cc", |
| 10 "buffering_controller.h", | 10 "buffering_controller.h", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 public_deps = [ | 35 public_deps = [ |
| 36 "//chromecast/public/media", | 36 "//chromecast/public/media", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 deps = [ | 39 deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//chromecast/base", | 41 "//chromecast/base", |
| 42 "//chromecast/base/metrics", | 42 "//chromecast/base/metrics", |
| 43 "//chromecast/media/base", |
| 43 "//media", | 44 "//media", |
| 44 "//media:shared_memory_support", | 45 "//media:shared_memory_support", |
| 45 ] | 46 ] |
| 46 } | 47 } |
| OLD | NEW |