| 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/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 ] | 275 ] |
| 276 } | 276 } |
| 277 } | 277 } |
| 278 | 278 |
| 279 rtc_test("test_support_unittests") { | 279 rtc_test("test_support_unittests") { |
| 280 deps = [] | 280 deps = [] |
| 281 sources = [ | 281 sources = [ |
| 282 "channel_transport/udp_socket_manager_unittest.cc", | 282 "channel_transport/udp_socket_manager_unittest.cc", |
| 283 "channel_transport/udp_socket_wrapper_unittest.cc", | 283 "channel_transport/udp_socket_wrapper_unittest.cc", |
| 284 "channel_transport/udp_transport_unittest.cc", | 284 "channel_transport/udp_transport_unittest.cc", |
| 285 "common_unittest.cc", | |
| 286 "fake_network_pipe_unittest.cc", | 285 "fake_network_pipe_unittest.cc", |
| 287 "frame_generator_unittest.cc", | 286 "frame_generator_unittest.cc", |
| 288 "rtp_file_reader_unittest.cc", | 287 "rtp_file_reader_unittest.cc", |
| 289 "rtp_file_writer_unittest.cc", | 288 "rtp_file_writer_unittest.cc", |
| 290 "testsupport/always_passing_unittest.cc", | 289 "testsupport/always_passing_unittest.cc", |
| 291 "testsupport/fileutils_unittest.cc", | 290 "testsupport/fileutils_unittest.cc", |
| 292 "testsupport/frame_reader_unittest.cc", | 291 "testsupport/frame_reader_unittest.cc", |
| 293 "testsupport/frame_writer_unittest.cc", | 292 "testsupport/frame_writer_unittest.cc", |
| 294 "testsupport/metrics/video_metrics_unittest.cc", | 293 "testsupport/metrics/video_metrics_unittest.cc", |
| 295 "testsupport/packet_reader_unittest.cc", | 294 "testsupport/packet_reader_unittest.cc", |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 465 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 467 } | 466 } |
| 468 | 467 |
| 469 deps = [ | 468 deps = [ |
| 470 ":test_support", | 469 ":test_support", |
| 471 ":video_test_common", | 470 ":video_test_common", |
| 472 "../modules/media_file", | 471 "../modules/media_file", |
| 473 "//testing/gtest", | 472 "//testing/gtest", |
| 474 ] | 473 ] |
| 475 } | 474 } |
| OLD | NEW |