| 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 sources += [ | 356 sources += [ |
| 357 "desktop_capture/desktop_region_unittest.cc", | 357 "desktop_capture/desktop_region_unittest.cc", |
| 358 "desktop_capture/differ_block_unittest.cc", | 358 "desktop_capture/differ_block_unittest.cc", |
| 359 "desktop_capture/differ_unittest.cc", | 359 "desktop_capture/differ_unittest.cc", |
| 360 ] | 360 ] |
| 361 } | 361 } |
| 362 | 362 |
| 363 if (rtc_desktop_capture_supported) { | 363 if (rtc_desktop_capture_supported) { |
| 364 deps += [ "desktop_capture" ] | 364 deps += [ "desktop_capture" ] |
| 365 sources += [ | 365 sources += [ |
| 366 "desktop_capture/color.cc", |
| 367 "desktop_capture/color.h", |
| 366 "desktop_capture/desktop_and_cursor_composer_unittest.cc", | 368 "desktop_capture/desktop_and_cursor_composer_unittest.cc", |
| 367 "desktop_capture/mouse_cursor_monitor_unittest.cc", | 369 "desktop_capture/mouse_cursor_monitor_unittest.cc", |
| 368 "desktop_capture/screen_capturer_helper_unittest.cc", | 370 "desktop_capture/screen_capturer_helper_unittest.cc", |
| 369 "desktop_capture/screen_capturer_mac_unittest.cc", | 371 "desktop_capture/screen_capturer_mac_unittest.cc", |
| 370 "desktop_capture/screen_capturer_mock_objects.h", | 372 "desktop_capture/screen_capturer_mock_objects.h", |
| 371 "desktop_capture/screen_capturer_unittest.cc", | 373 "desktop_capture/screen_capturer_unittest.cc", |
| 372 "desktop_capture/screen_drawer.h", | 374 "desktop_capture/screen_drawer.h", |
| 373 "desktop_capture/screen_drawer_linux.cc", | 375 "desktop_capture/screen_drawer_linux.cc", |
| 374 "desktop_capture/screen_drawer_mac.cc", | 376 "desktop_capture/screen_drawer_mac.cc", |
| 375 "desktop_capture/screen_drawer_unittest.cc", | 377 "desktop_capture/screen_drawer_unittest.cc", |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 "audio_device/ios/objc/RTCAudioSessionTest.mm", | 625 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
| 624 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", | 626 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
| 625 ] | 627 ] |
| 626 | 628 |
| 627 ldflags = [ "-ObjC" ] | 629 ldflags = [ "-ObjC" ] |
| 628 | 630 |
| 629 # TODO(kjellander): Mac bundle files. | 631 # TODO(kjellander): Mac bundle files. |
| 630 } | 632 } |
| 631 } | 633 } |
| 632 } | 634 } |
| OLD | NEW |