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