| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 "desktop_capture/differ_block_unittest.cc", | 280 "desktop_capture/differ_block_unittest.cc", |
| 281 "desktop_capture/differ_unittest.cc", | 281 "desktop_capture/differ_unittest.cc", |
| 282 ] | 282 ] |
| 283 } | 283 } |
| 284 | 284 |
| 285 if (rtc_desktop_capture_supported) { | 285 if (rtc_desktop_capture_supported) { |
| 286 deps += [ "desktop_capture" ] | 286 deps += [ "desktop_capture" ] |
| 287 sources += [ | 287 sources += [ |
| 288 "desktop_capture/desktop_and_cursor_composer_unittest.cc", | 288 "desktop_capture/desktop_and_cursor_composer_unittest.cc", |
| 289 "desktop_capture/mouse_cursor_monitor_unittest.cc", | 289 "desktop_capture/mouse_cursor_monitor_unittest.cc", |
| 290 "desktop_capture/screen_capturer_differ_wrapper_unittest.cc", |
| 290 "desktop_capture/screen_capturer_helper_unittest.cc", | 291 "desktop_capture/screen_capturer_helper_unittest.cc", |
| 291 "desktop_capture/screen_capturer_mac_unittest.cc", | 292 "desktop_capture/screen_capturer_mac_unittest.cc", |
| 293 "desktop_capture/screen_capturer_mock_objects.cc", |
| 292 "desktop_capture/screen_capturer_mock_objects.h", | 294 "desktop_capture/screen_capturer_mock_objects.h", |
| 293 "desktop_capture/screen_capturer_unittest.cc", | 295 "desktop_capture/screen_capturer_unittest.cc", |
| 294 "desktop_capture/win/cursor_unittest.cc", | 296 "desktop_capture/win/cursor_unittest.cc", |
| 295 "desktop_capture/win/cursor_unittest_resources.h", | 297 "desktop_capture/win/cursor_unittest_resources.h", |
| 296 "desktop_capture/win/cursor_unittest_resources.rc", | 298 "desktop_capture/win/cursor_unittest_resources.rc", |
| 297 "desktop_capture/window_capturer_unittest.cc", | 299 "desktop_capture/window_capturer_unittest.cc", |
| 298 ] | 300 ] |
| 299 } | 301 } |
| 300 | 302 |
| 301 if (rtc_prefer_fixed_point) { | 303 if (rtc_prefer_fixed_point) { |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 "audio_device/ios/objc/RTCAudioSessionTest.mm", | 537 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
| 536 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", | 538 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
| 537 ] | 539 ] |
| 538 | 540 |
| 539 ldflags = [ "-ObjC" ] | 541 ldflags = [ "-ObjC" ] |
| 540 | 542 |
| 541 # TODO(kjellander): Mac bundle files. | 543 # TODO(kjellander): Mac bundle files. |
| 542 } | 544 } |
| 543 } | 545 } |
| 544 } | 546 } |
| OLD | NEW |