| 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 | |
| 549 if (rtc_desktop_capture_supported || is_android) { | 545 if (rtc_desktop_capture_supported || is_android) { |
| 550 deps += [ "desktop_capture" ] | 546 deps += [ "desktop_capture" ] |
| 551 sources += [ | 547 sources += [ |
| 552 "desktop_capture/desktop_region_unittest.cc", | 548 "desktop_capture/desktop_region_unittest.cc", |
| 553 "desktop_capture/differ_block_unittest.cc", | 549 "desktop_capture/differ_block_unittest.cc", |
| 554 ] | 550 ] |
| 555 } | 551 } |
| 556 | 552 |
| 557 if (rtc_desktop_capture_supported) { | 553 if (rtc_desktop_capture_supported) { |
| 558 deps += [ "desktop_capture:desktop_capture_mock" ] | 554 deps += [ "desktop_capture:desktop_capture_mock" ] |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 "../test:test_common", | 741 "../test:test_common", |
| 746 "../test:test_support_main", | 742 "../test:test_support_main", |
| 747 "remote_bitrate_estimator:bwe_simulator_lib", | 743 "remote_bitrate_estimator:bwe_simulator_lib", |
| 748 "video_capture", | 744 "video_capture", |
| 749 "//testing/gmock", | 745 "//testing/gmock", |
| 750 "//testing/gtest", | 746 "//testing/gtest", |
| 751 "//third_party/gflags", | 747 "//third_party/gflags", |
| 752 ] | 748 ] |
| 753 } | 749 } |
| 754 } | 750 } |
| OLD | NEW |