| 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 "desktop_capture/desktop_region_unittest.cc", | 554 "desktop_capture/desktop_region_unittest.cc", |
| 555 "desktop_capture/differ_block_unittest.cc", | 555 "desktop_capture/differ_block_unittest.cc", |
| 556 ] | 556 ] |
| 557 } | 557 } |
| 558 | 558 |
| 559 if (rtc_desktop_capture_supported) { | 559 if (rtc_desktop_capture_supported) { |
| 560 deps += [ "desktop_capture:desktop_capture_mock" ] | 560 deps += [ "desktop_capture:desktop_capture_mock" ] |
| 561 sources += [ | 561 sources += [ |
| 562 "desktop_capture/desktop_and_cursor_composer_unittest.cc", | 562 "desktop_capture/desktop_and_cursor_composer_unittest.cc", |
| 563 "desktop_capture/desktop_capturer_differ_wrapper_unittest.cc", | 563 "desktop_capture/desktop_capturer_differ_wrapper_unittest.cc", |
| 564 "desktop_capture/desktop_frame_rotation_unittest.cc", |
| 564 "desktop_capture/mouse_cursor_monitor_unittest.cc", | 565 "desktop_capture/mouse_cursor_monitor_unittest.cc", |
| 565 "desktop_capture/rgba_color_unittest.cc", | 566 "desktop_capture/rgba_color_unittest.cc", |
| 566 "desktop_capture/screen_capturer_helper_unittest.cc", | 567 "desktop_capture/screen_capturer_helper_unittest.cc", |
| 567 "desktop_capture/screen_capturer_mac_unittest.cc", | 568 "desktop_capture/screen_capturer_mac_unittest.cc", |
| 568 "desktop_capture/screen_capturer_mock_objects.h", | 569 "desktop_capture/screen_capturer_mock_objects.h", |
| 569 "desktop_capture/screen_capturer_unittest.cc", | 570 "desktop_capture/screen_capturer_unittest.cc", |
| 571 "desktop_capture/test_utils.cc", |
| 572 "desktop_capture/test_utils.h", |
| 573 "desktop_capture/test_utils_unittest.cc", |
| 570 "desktop_capture/win/cursor_unittest.cc", | 574 "desktop_capture/win/cursor_unittest.cc", |
| 571 "desktop_capture/win/cursor_unittest_resources.h", | 575 "desktop_capture/win/cursor_unittest_resources.h", |
| 572 "desktop_capture/win/cursor_unittest_resources.rc", | 576 "desktop_capture/win/cursor_unittest_resources.rc", |
| 573 "desktop_capture/window_capturer_unittest.cc", | 577 "desktop_capture/window_capturer_unittest.cc", |
| 574 ] | 578 ] |
| 575 } | 579 } |
| 576 | 580 |
| 577 if (rtc_prefer_fixed_point) { | 581 if (rtc_prefer_fixed_point) { |
| 578 defines += [ "WEBRTC_AUDIOPROC_FIXED_PROFILE" ] | 582 defines += [ "WEBRTC_AUDIOPROC_FIXED_PROFILE" ] |
| 579 } else { | 583 } else { |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 "../test:test_common", | 750 "../test:test_common", |
| 747 "../test:test_support_main", | 751 "../test:test_support_main", |
| 748 "remote_bitrate_estimator:bwe_simulator_lib", | 752 "remote_bitrate_estimator:bwe_simulator_lib", |
| 749 "video_capture", | 753 "video_capture", |
| 750 "//testing/gmock", | 754 "//testing/gmock", |
| 751 "//testing/gtest", | 755 "//testing/gtest", |
| 752 "//third_party/gflags", | 756 "//third_party/gflags", |
| 753 ] | 757 ] |
| 754 } | 758 } |
| 755 } | 759 } |
| OLD | NEW |