| 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 "desktop_capture/differ_block_unittest.cc", | 356 "desktop_capture/differ_block_unittest.cc", |
| 357 "desktop_capture/differ_unittest.cc", | 357 "desktop_capture/differ_unittest.cc", |
| 358 ] | 358 ] |
| 359 } | 359 } |
| 360 | 360 |
| 361 if (rtc_desktop_capture_supported) { | 361 if (rtc_desktop_capture_supported) { |
| 362 deps += [ "desktop_capture" ] | 362 deps += [ "desktop_capture" ] |
| 363 sources += [ | 363 sources += [ |
| 364 "desktop_capture/desktop_and_cursor_composer_unittest.cc", | 364 "desktop_capture/desktop_and_cursor_composer_unittest.cc", |
| 365 "desktop_capture/mouse_cursor_monitor_unittest.cc", | 365 "desktop_capture/mouse_cursor_monitor_unittest.cc", |
| 366 "desktop_capture/screen_capturer_differ_wrapper_unittest.cc", |
| 366 "desktop_capture/screen_capturer_helper_unittest.cc", | 367 "desktop_capture/screen_capturer_helper_unittest.cc", |
| 367 "desktop_capture/screen_capturer_mac_unittest.cc", | 368 "desktop_capture/screen_capturer_mac_unittest.cc", |
| 369 "desktop_capture/screen_capturer_mock_objects.cc", |
| 368 "desktop_capture/screen_capturer_mock_objects.h", | 370 "desktop_capture/screen_capturer_mock_objects.h", |
| 369 "desktop_capture/screen_capturer_unittest.cc", | 371 "desktop_capture/screen_capturer_unittest.cc", |
| 370 "desktop_capture/win/cursor_unittest.cc", | 372 "desktop_capture/win/cursor_unittest.cc", |
| 371 "desktop_capture/win/cursor_unittest_resources.h", | 373 "desktop_capture/win/cursor_unittest_resources.h", |
| 372 "desktop_capture/win/cursor_unittest_resources.rc", | 374 "desktop_capture/win/cursor_unittest_resources.rc", |
| 373 "desktop_capture/window_capturer_unittest.cc", | 375 "desktop_capture/window_capturer_unittest.cc", |
| 374 ] | 376 ] |
| 375 } | 377 } |
| 376 | 378 |
| 377 if (rtc_prefer_fixed_point) { | 379 if (rtc_prefer_fixed_point) { |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 "audio_device/ios/objc/RTCAudioSessionTest.mm", | 613 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
| 612 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", | 614 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
| 613 ] | 615 ] |
| 614 | 616 |
| 615 ldflags = [ "-ObjC" ] | 617 ldflags = [ "-ObjC" ] |
| 616 | 618 |
| 617 # TODO(kjellander): Mac bundle files. | 619 # TODO(kjellander): Mac bundle files. |
| 618 } | 620 } |
| 619 } | 621 } |
| 620 } | 622 } |
| OLD | NEW |