OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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("audio_coding/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 ] | 535 ] |
536 } else { | 536 } else { |
537 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ] | 537 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ] |
538 } | 538 } |
539 | 539 |
540 if (rtc_libvpx_build_vp9) { | 540 if (rtc_libvpx_build_vp9) { |
541 sources += | 541 sources += |
542 [ "video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc" ] | 542 [ "video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc" ] |
543 } | 543 } |
544 | 544 |
| 545 if (rtc_use_h264) { |
| 546 sources += [ "video_coding/codecs/h264/h264_encoder_impl_unittest.cc" ] |
| 547 } |
| 548 |
545 if (rtc_desktop_capture_supported || is_android) { | 549 if (rtc_desktop_capture_supported || is_android) { |
546 deps += [ "desktop_capture" ] | 550 deps += [ "desktop_capture" ] |
547 sources += [ | 551 sources += [ |
548 "desktop_capture/desktop_region_unittest.cc", | 552 "desktop_capture/desktop_region_unittest.cc", |
549 "desktop_capture/differ_block_unittest.cc", | 553 "desktop_capture/differ_block_unittest.cc", |
550 ] | 554 ] |
551 } | 555 } |
552 | 556 |
553 if (rtc_desktop_capture_supported) { | 557 if (rtc_desktop_capture_supported) { |
554 deps += [ "desktop_capture:desktop_capture_mock" ] | 558 deps += [ "desktop_capture:desktop_capture_mock" ] |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 "../test:test_common", | 748 "../test:test_common", |
745 "../test:test_support_main", | 749 "../test:test_support_main", |
746 "remote_bitrate_estimator:bwe_simulator_lib", | 750 "remote_bitrate_estimator:bwe_simulator_lib", |
747 "video_capture", | 751 "video_capture", |
748 "//testing/gmock", | 752 "//testing/gmock", |
749 "//testing/gtest", | 753 "//testing/gtest", |
750 "//third_party/gflags", | 754 "//third_party/gflags", |
751 ] | 755 ] |
752 } | 756 } |
753 } | 757 } |
OLD | NEW |