| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 ] | 300 ] |
| 301 } | 301 } |
| 302 } | 302 } |
| 303 | 303 |
| 304 test("test_support_unittests") { | 304 test("test_support_unittests") { |
| 305 deps = [] | 305 deps = [] |
| 306 sources = [ | 306 sources = [ |
| 307 "channel_transport/udp_socket_manager_unittest.cc", | 307 "channel_transport/udp_socket_manager_unittest.cc", |
| 308 "channel_transport/udp_socket_wrapper_unittest.cc", | 308 "channel_transport/udp_socket_wrapper_unittest.cc", |
| 309 "channel_transport/udp_transport_unittest.cc", | 309 "channel_transport/udp_transport_unittest.cc", |
| 310 "common_unittest.cc", | |
| 311 "fake_network_pipe_unittest.cc", | 310 "fake_network_pipe_unittest.cc", |
| 312 "frame_generator_unittest.cc", | 311 "frame_generator_unittest.cc", |
| 313 "rtp_file_reader_unittest.cc", | 312 "rtp_file_reader_unittest.cc", |
| 314 "rtp_file_writer_unittest.cc", | 313 "rtp_file_writer_unittest.cc", |
| 315 "testsupport/always_passing_unittest.cc", | 314 "testsupport/always_passing_unittest.cc", |
| 316 "testsupport/fileutils_unittest.cc", | 315 "testsupport/fileutils_unittest.cc", |
| 317 "testsupport/frame_reader_unittest.cc", | 316 "testsupport/frame_reader_unittest.cc", |
| 318 "testsupport/frame_writer_unittest.cc", | 317 "testsupport/frame_writer_unittest.cc", |
| 319 "testsupport/metrics/video_metrics_unittest.cc", | 318 "testsupport/metrics/video_metrics_unittest.cc", |
| 320 "testsupport/packet_reader_unittest.cc", | 319 "testsupport/packet_reader_unittest.cc", |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 configs -= [ "//build/config/clang:find_bad_constructs" ] | 500 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 502 } | 501 } |
| 503 | 502 |
| 504 deps = [ | 503 deps = [ |
| 505 ":test_support", | 504 ":test_support", |
| 506 ":video_test_common", | 505 ":video_test_common", |
| 507 "../modules/media_file", | 506 "../modules/media_file", |
| 508 "//testing/gtest", | 507 "//testing/gtest", |
| 509 ] | 508 ] |
| 510 } | 509 } |
| OLD | NEW |