| 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 | 228 |
| 229 if (is_ios) { | 229 if (is_ios) { |
| 230 deps += [ "../sdk:objc_common" ] | 230 deps += [ "../sdk:objc_common" ] |
| 231 } | 231 } |
| 232 | 232 |
| 233 if (rtc_use_memcheck) { | 233 if (rtc_use_memcheck) { |
| 234 data = valgrind_webrtc_dependencies | 234 data = valgrind_webrtc_dependencies |
| 235 } | 235 } |
| 236 } | 236 } |
| 237 | 237 |
| 238 rtc_source_set("test_support_isolated_output") { | 238 rtc_source_set("test_support_test_output") { |
| 239 testonly = true | 239 testonly = true |
| 240 sources = [ | 240 sources = [ |
| 241 "testsupport/isolated_output.cc", | 241 "testsupport/test_output.cc", |
| 242 "testsupport/isolated_output.h", | 242 "testsupport/test_output.h", |
| 243 ] | 243 ] |
| 244 deps = [ | 244 deps = [ |
| 245 ":fileutils", | 245 ":fileutils", |
| 246 "../rtc_base:rtc_base_approved", | 246 "../rtc_base:rtc_base_approved", |
| 247 "//third_party/gflags", | 247 "//third_party/gflags", |
| 248 ] | 248 ] |
| 249 } | 249 } |
| 250 | 250 |
| 251 test_support_unittests_resources = [ | 251 test_support_unittests_resources = [ |
| 252 "../../resources/foreman_cif_short.yuv", | 252 "../../resources/foreman_cif_short.yuv", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 279 "../rtc_base:rtc_base_approved", | 279 "../rtc_base:rtc_base_approved", |
| 280 "../system_wrappers", | 280 "../system_wrappers", |
| 281 ] | 281 ] |
| 282 sources = [ | 282 sources = [ |
| 283 "fake_audio_device_unittest.cc", | 283 "fake_audio_device_unittest.cc", |
| 284 "fake_network_pipe_unittest.cc", | 284 "fake_network_pipe_unittest.cc", |
| 285 "frame_generator_unittest.cc", | 285 "frame_generator_unittest.cc", |
| 286 "rtp_file_reader_unittest.cc", | 286 "rtp_file_reader_unittest.cc", |
| 287 "rtp_file_writer_unittest.cc", | 287 "rtp_file_writer_unittest.cc", |
| 288 "testsupport/always_passing_unittest.cc", | 288 "testsupport/always_passing_unittest.cc", |
| 289 "testsupport/isolated_output_unittest.cc", | |
| 290 "testsupport/metrics/video_metrics_unittest.cc", | 289 "testsupport/metrics/video_metrics_unittest.cc", |
| 291 "testsupport/packet_reader_unittest.cc", | 290 "testsupport/packet_reader_unittest.cc", |
| 292 "testsupport/perf_test_unittest.cc", | 291 "testsupport/perf_test_unittest.cc", |
| 292 "testsupport/test_output_unittest.cc", |
| 293 "testsupport/y4m_frame_writer_unittest.cc", | 293 "testsupport/y4m_frame_writer_unittest.cc", |
| 294 "testsupport/yuv_frame_reader_unittest.cc", | 294 "testsupport/yuv_frame_reader_unittest.cc", |
| 295 "testsupport/yuv_frame_writer_unittest.cc", | 295 "testsupport/yuv_frame_writer_unittest.cc", |
| 296 ] | 296 ] |
| 297 | 297 |
| 298 # TODO(jschuh): Bug 1348: fix this warning. | 298 # TODO(jschuh): Bug 1348: fix this warning. |
| 299 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 299 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 300 | 300 |
| 301 if (is_win) { | 301 if (is_win) { |
| 302 # virtual override w/different const/volatile signature. | 302 # virtual override w/different const/volatile signature. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 316 | 316 |
| 317 if (is_ios) { | 317 if (is_ios) { |
| 318 deps += [ ":test_support_unittests_bundle_data" ] | 318 deps += [ ":test_support_unittests_bundle_data" ] |
| 319 } | 319 } |
| 320 | 320 |
| 321 deps += [ | 321 deps += [ |
| 322 ":direct_transport", | 322 ":direct_transport", |
| 323 ":fileutils_unittests", | 323 ":fileutils_unittests", |
| 324 ":test_common", | 324 ":test_common", |
| 325 ":test_main", | 325 ":test_main", |
| 326 ":test_support_isolated_output", | 326 ":test_support_test_output", |
| 327 ":video_test_common", | 327 ":video_test_common", |
| 328 ":video_test_support", | 328 ":video_test_support", |
| 329 "../modules/video_capture", | 329 "../modules/video_capture", |
| 330 "//testing/gmock", | 330 "//testing/gmock", |
| 331 "//testing/gtest", | 331 "//testing/gtest", |
| 332 "//third_party/gflags", | 332 "//third_party/gflags", |
| 333 ] | 333 ] |
| 334 } | 334 } |
| 335 } | 335 } |
| 336 | 336 |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 java_files = [ | 604 java_files = [ |
| 605 "android/org/webrtc/native_test/RTCNativeUnitTest.java", | 605 "android/org/webrtc/native_test/RTCNativeUnitTest.java", |
| 606 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", | 606 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", |
| 607 ] | 607 ] |
| 608 deps = [ | 608 deps = [ |
| 609 "../rtc_base:base_java", | 609 "../rtc_base:base_java", |
| 610 "//testing/android/native_test:native_test_java", | 610 "//testing/android/native_test:native_test_java", |
| 611 ] | 611 ] |
| 612 } | 612 } |
| 613 } | 613 } |
| OLD | NEW |