| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 "desktop_capture/desktop_region_unittest.cc", | 355 "desktop_capture/desktop_region_unittest.cc", |
| 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/desktop_frame_generator.cc", |
| 366 "desktop_capture/desktop_frame_generator.h", |
| 367 "desktop_capture/fake_desktop_capturer.h", |
| 368 "desktop_capture/fake_screen_capturer.cc", |
| 369 "desktop_capture/fake_screen_capturer.h", |
| 365 "desktop_capture/mouse_cursor_monitor_unittest.cc", | 370 "desktop_capture/mouse_cursor_monitor_unittest.cc", |
| 371 "desktop_capture/screen_capturer_differ_wrapper_unittest.cc", |
| 366 "desktop_capture/screen_capturer_helper_unittest.cc", | 372 "desktop_capture/screen_capturer_helper_unittest.cc", |
| 367 "desktop_capture/screen_capturer_mac_unittest.cc", | 373 "desktop_capture/screen_capturer_mac_unittest.cc", |
| 368 "desktop_capture/screen_capturer_mock_objects.h", | 374 "desktop_capture/screen_capturer_mock_objects.h", |
| 369 "desktop_capture/screen_capturer_unittest.cc", | 375 "desktop_capture/screen_capturer_unittest.cc", |
| 370 "desktop_capture/win/cursor_unittest.cc", | 376 "desktop_capture/win/cursor_unittest.cc", |
| 371 "desktop_capture/win/cursor_unittest_resources.h", | 377 "desktop_capture/win/cursor_unittest_resources.h", |
| 372 "desktop_capture/win/cursor_unittest_resources.rc", | 378 "desktop_capture/win/cursor_unittest_resources.rc", |
| 373 "desktop_capture/window_capturer_unittest.cc", | 379 "desktop_capture/window_capturer_unittest.cc", |
| 374 ] | 380 ] |
| 375 } | 381 } |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 "audio_device/ios/objc/RTCAudioSessionTest.mm", | 617 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
| 612 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", | 618 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
| 613 ] | 619 ] |
| 614 | 620 |
| 615 ldflags = [ "-ObjC" ] | 621 ldflags = [ "-ObjC" ] |
| 616 | 622 |
| 617 # TODO(kjellander): Mac bundle files. | 623 # TODO(kjellander): Mac bundle files. |
| 618 } | 624 } |
| 619 } | 625 } |
| 620 } | 626 } |
| OLD | NEW |