Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
|
xhwang
2015/01/19 02:59:51
You need media/cast OWNERS to review this.
| |
| 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 component("cast") { | 5 component("cast") { |
| 6 deps = [ | 6 deps = [ |
| 7 ":sender", | 7 ":sender", |
| 8 ":receiver", | 8 ":receiver", |
| 9 ] | 9 ] |
| 10 } | 10 } |
| 11 | 11 |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 193 if (is_ios) { | 193 if (is_ios) { |
| 194 deps += [ "//media:media_for_cast_ios" ] | 194 deps += [ "//media:media_for_cast_ios" ] |
| 195 deps -= [ | 195 deps -= [ |
| 196 "//media", | 196 "//media", |
| 197 "//third_party/libvpx", | 197 "//third_party/libvpx", |
| 198 "//third_party/opus", | 198 "//third_party/opus", |
| 199 ] | 199 ] |
| 200 } | 200 } |
| 201 } | 201 } |
| 202 | 202 |
| 203 source_set("test_support") { | 203 static_library("test_support") { |
| 204 testonly = true | 204 testonly = true |
| 205 sources = [ | 205 sources = [ |
| 206 # TODO(hclam): FFmpeg. | 206 # TODO(hclam): FFmpeg. |
| 207 # "test/fake_media_source.cc", | 207 # "test/fake_media_source.cc", |
| 208 # "test/fake_media_source.h", | 208 # "test/fake_media_source.h", |
| 209 "test/fake_single_thread_task_runner.cc", | 209 "test/fake_single_thread_task_runner.cc", |
| 210 "test/fake_single_thread_task_runner.h", | 210 "test/fake_single_thread_task_runner.h", |
| 211 "test/skewed_single_thread_task_runner.cc", | 211 "test/skewed_single_thread_task_runner.cc", |
| 212 "test/skewed_single_thread_task_runner.h", | 212 "test/skewed_single_thread_task_runner.h", |
| 213 "test/skewed_tick_clock.cc", | 213 "test/skewed_tick_clock.cc", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 364 sources = [ | 364 sources = [ |
| 365 "test/utility/udp_proxy_main.cc", | 365 "test/utility/udp_proxy_main.cc", |
| 366 ] | 366 ] |
| 367 | 367 |
| 368 deps = [ | 368 deps = [ |
| 369 ":test_support", | 369 ":test_support", |
| 370 "//base", | 370 "//base", |
| 371 "//net", | 371 "//net", |
| 372 ] | 372 ] |
| 373 } | 373 } |
| OLD | NEW |