| 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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 if (rtc_libvpx_build_vp9) { | 499 if (rtc_libvpx_build_vp9) { |
| 500 sources += | 500 sources += |
| 501 [ "video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc" ] | 501 [ "video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc" ] |
| 502 } | 502 } |
| 503 | 503 |
| 504 if (rtc_desktop_capture_supported || is_android) { | 504 if (rtc_desktop_capture_supported || is_android) { |
| 505 deps += [ "desktop_capture" ] | 505 deps += [ "desktop_capture" ] |
| 506 sources += [ | 506 sources += [ |
| 507 "desktop_capture/desktop_region_unittest.cc", | 507 "desktop_capture/desktop_region_unittest.cc", |
| 508 "desktop_capture/differ_block_unittest.cc", | 508 "desktop_capture/differ_block_unittest.cc", |
| 509 "desktop_capture/differ_unittest.cc", | |
| 510 ] | 509 ] |
| 511 } | 510 } |
| 512 | 511 |
| 513 if (rtc_desktop_capture_supported) { | 512 if (rtc_desktop_capture_supported) { |
| 514 deps += [ "desktop_capture" ] | 513 deps += [ "desktop_capture" ] |
| 515 sources += [ | 514 sources += [ |
| 516 "desktop_capture/desktop_and_cursor_composer_unittest.cc", | 515 "desktop_capture/desktop_and_cursor_composer_unittest.cc", |
| 517 "desktop_capture/desktop_frame_generator.cc", | 516 "desktop_capture/desktop_frame_generator.cc", |
| 518 "desktop_capture/desktop_frame_generator.h", | 517 "desktop_capture/desktop_frame_generator.h", |
| 519 "desktop_capture/fake_desktop_capturer.h", | 518 "desktop_capture/fake_desktop_capturer.h", |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 sources += [ | 673 sources += [ |
| 675 "audio_device/ios/audio_device_unittest_ios.cc", | 674 "audio_device/ios/audio_device_unittest_ios.cc", |
| 676 "audio_device/ios/objc/RTCAudioSessionTest.mm", | 675 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
| 677 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", | 676 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
| 678 ] | 677 ] |
| 679 | 678 |
| 680 ldflags = [ "-ObjC" ] | 679 ldflags = [ "-ObjC" ] |
| 681 } | 680 } |
| 682 } | 681 } |
| 683 } | 682 } |
| OLD | NEW |