| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 deps = [ | 213 deps = [ |
| 214 ":net", | 214 ":net", |
| 215 ":receiver", | 215 ":receiver", |
| 216 "//base/test:test_support", | 216 "//base/test:test_support", |
| 217 "//testing/gtest", | 217 "//testing/gtest", |
| 218 # TODO(hclam): Does not build on ARM yet. | 218 # TODO(hclam): Does not build on ARM yet. |
| 219 # "//third_party/ffmpeg", | 219 # "//third_party/ffmpeg", |
| 220 "//third_party/libyuv", | 220 "//third_party/libyuv", |
| 221 "//third_party/mt19937ar", | 221 "//third_party/mt19937ar", |
| 222 "//ui/gfx", | 222 "//ui/gfx", |
| 223 "//ui/gfx/geometry", |
| 223 ] | 224 ] |
| 224 } | 225 } |
| 225 | 226 |
| 226 test("cast_unittests") { | 227 test("cast_unittests") { |
| 227 sources = [ | 228 sources = [ |
| 228 "logging/encoding_event_subscriber_unittest.cc", | 229 "logging/encoding_event_subscriber_unittest.cc", |
| 229 "logging/serialize_deserialize_test.cc", | 230 "logging/serialize_deserialize_test.cc", |
| 230 "logging/logging_impl_unittest.cc", | 231 "logging/logging_impl_unittest.cc", |
| 231 "logging/logging_raw_unittest.cc", | 232 "logging/logging_raw_unittest.cc", |
| 232 "logging/receiver_time_offset_estimator_impl_unittest.cc", | 233 "logging/receiver_time_offset_estimator_impl_unittest.cc", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 sources = [ | 320 sources = [ |
| 320 "test/utility/udp_proxy_main.cc", | 321 "test/utility/udp_proxy_main.cc", |
| 321 ] | 322 ] |
| 322 | 323 |
| 323 deps = [ | 324 deps = [ |
| 324 ":test_support", | 325 ":test_support", |
| 325 "//base", | 326 "//base", |
| 326 "//net", | 327 "//net", |
| 327 ] | 328 ] |
| 328 } | 329 } |
| OLD | NEW |