| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 component("cast") { | 5 component("cast") { |
| 6 deps = [ | 6 deps = [ |
| 7 ":sender", | 7 ":sender", |
| 8 ":receiver", | 8 ":receiver", |
| 9 ] | 9 ] |
| 10 } | 10 } |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 "//media", | 162 "//media", |
| 163 "//media:shared_memory_support", | 163 "//media:shared_memory_support", |
| 164 "//third_party/opus", | 164 "//third_party/opus", |
| 165 # TODO(hclam): libvpx support. | 165 # TODO(hclam): libvpx support. |
| 166 # "//third_party/libvpx", | 166 # "//third_party/libvpx", |
| 167 "//ui/gfx", | 167 "//ui/gfx", |
| 168 ] | 168 ] |
| 169 } | 169 } |
| 170 | 170 |
| 171 source_set("test_support") { | 171 source_set("test_support") { |
| 172 testonly = true |
| 172 sources = [ | 173 sources = [ |
| 173 # TODO(hclam): FFmpeg. | 174 # TODO(hclam): FFmpeg. |
| 174 # "test/fake_media_source.cc", | 175 # "test/fake_media_source.cc", |
| 175 # "test/fake_media_source.h", | 176 # "test/fake_media_source.h", |
| 176 "test/fake_single_thread_task_runner.cc", | 177 "test/fake_single_thread_task_runner.cc", |
| 177 "test/fake_single_thread_task_runner.h", | 178 "test/fake_single_thread_task_runner.h", |
| 178 "test/skewed_single_thread_task_runner.cc", | 179 "test/skewed_single_thread_task_runner.cc", |
| 179 "test/skewed_single_thread_task_runner.h", | 180 "test/skewed_single_thread_task_runner.h", |
| 180 "test/skewed_tick_clock.cc", | 181 "test/skewed_tick_clock.cc", |
| 181 "test/skewed_tick_clock.h", | 182 "test/skewed_tick_clock.h", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 ":sender", | 277 ":sender", |
| 277 ":test_support", | 278 ":test_support", |
| 278 "//base/test:run_all_unittests", | 279 "//base/test:run_all_unittests", |
| 279 "//base/test:test_support", | 280 "//base/test:test_support", |
| 280 "//testing/gmock", | 281 "//testing/gmock", |
| 281 "//testing/gtest", | 282 "//testing/gtest", |
| 282 ] | 283 ] |
| 283 } | 284 } |
| 284 | 285 |
| 285 executable("generate_barcode_video") { | 286 executable("generate_barcode_video") { |
| 287 testonly = true |
| 286 sources = [ | 288 sources = [ |
| 287 "test/utility/generate_barcode_video.cc", | 289 "test/utility/generate_barcode_video.cc", |
| 288 ] | 290 ] |
| 289 | 291 |
| 290 deps = [ | 292 deps = [ |
| 291 ":test_support", | 293 ":test_support", |
| 292 "//base", | 294 "//base", |
| 293 "//media", | 295 "//media", |
| 294 ] | 296 ] |
| 295 } | 297 } |
| 296 | 298 |
| 297 executable("generate_timecode_audio") { | 299 executable("generate_timecode_audio") { |
| 300 testonly = true |
| 298 sources = [ | 301 sources = [ |
| 299 "test/utility/generate_timecode_audio.cc", | 302 "test/utility/generate_timecode_audio.cc", |
| 300 ] | 303 ] |
| 301 | 304 |
| 302 deps = [ | 305 deps = [ |
| 303 ":test_support", | 306 ":test_support", |
| 304 "//base", | 307 "//base", |
| 305 "//media", | 308 "//media", |
| 306 ] | 309 ] |
| 307 } | 310 } |
| 308 | 311 |
| 309 executable("udp_proxy") { | 312 executable("udp_proxy") { |
| 313 testonly = true |
| 310 sources = [ | 314 sources = [ |
| 311 "test/utility/udp_proxy_main.cc", | 315 "test/utility/udp_proxy_main.cc", |
| 312 ] | 316 ] |
| 313 | 317 |
| 314 deps = [ | 318 deps = [ |
| 315 ":test_support", | 319 ":test_support", |
| 316 "//base", | 320 "//base", |
| 317 "//net", | 321 "//net", |
| 318 ] | 322 ] |
| 319 } | 323 } |
| OLD | NEW |