| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 282 |
| 283 if (rtc_desktop_capture_supported) { | 283 if (rtc_desktop_capture_supported) { |
| 284 deps += [ "desktop_capture" ] | 284 deps += [ "desktop_capture" ] |
| 285 sources += [ | 285 sources += [ |
| 286 "desktop_capture/desktop_and_cursor_composer_unittest.cc", | 286 "desktop_capture/desktop_and_cursor_composer_unittest.cc", |
| 287 "desktop_capture/mouse_cursor_monitor_unittest.cc", | 287 "desktop_capture/mouse_cursor_monitor_unittest.cc", |
| 288 "desktop_capture/screen_capturer_helper_unittest.cc", | 288 "desktop_capture/screen_capturer_helper_unittest.cc", |
| 289 "desktop_capture/screen_capturer_mac_unittest.cc", | 289 "desktop_capture/screen_capturer_mac_unittest.cc", |
| 290 "desktop_capture/screen_capturer_mock_objects.h", | 290 "desktop_capture/screen_capturer_mock_objects.h", |
| 291 "desktop_capture/screen_capturer_unittest.cc", | 291 "desktop_capture/screen_capturer_unittest.cc", |
| 292 "desktop_capture/screen_drawer.cc", |
| 293 "desktop_capture/screen_drawer.h", |
| 294 "desktop_capture/screen_drawer_linux.cc", |
| 295 "desktop_capture/screen_drawer_linux.h", |
| 296 "desktop_capture/screen_drawer_unittest.cc", |
| 297 "desktop_capture/screen_drawer_win.cc", |
| 298 "desktop_capture/screen_drawer_win.h", |
| 292 "desktop_capture/win/cursor_unittest.cc", | 299 "desktop_capture/win/cursor_unittest.cc", |
| 293 "desktop_capture/win/cursor_unittest_resources.h", | 300 "desktop_capture/win/cursor_unittest_resources.h", |
| 294 "desktop_capture/win/cursor_unittest_resources.rc", | 301 "desktop_capture/win/cursor_unittest_resources.rc", |
| 295 "desktop_capture/window_capturer_unittest.cc", | 302 "desktop_capture/window_capturer_unittest.cc", |
| 296 ] | 303 ] |
| 297 } | 304 } |
| 298 | 305 |
| 299 if (rtc_prefer_fixed_point) { | 306 if (rtc_prefer_fixed_point) { |
| 300 defines += [ "WEBRTC_AUDIOPROC_FIXED_PROFILE" ] | 307 defines += [ "WEBRTC_AUDIOPROC_FIXED_PROFILE" ] |
| 301 } else { | 308 } else { |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 "audio_device/ios/objc/RTCAudioSessionTest.mm", | 541 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
| 535 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", | 542 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
| 536 ] | 543 ] |
| 537 | 544 |
| 538 ldflags = [ "-ObjC" ] | 545 ldflags = [ "-ObjC" ] |
| 539 | 546 |
| 540 # TODO(kjellander): Mac bundle files. | 547 # TODO(kjellander): Mac bundle files. |
| 541 } | 548 } |
| 542 } | 549 } |
| 543 } | 550 } |
| OLD | NEW |