OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "frame_generator.cc", | 43 "frame_generator.cc", |
44 "frame_generator.h", | 44 "frame_generator.h", |
45 "frame_generator_capturer.cc", | 45 "frame_generator_capturer.cc", |
46 "frame_generator_capturer.h", | 46 "frame_generator_capturer.h", |
47 "frame_utils.cc", | 47 "frame_utils.cc", |
48 "frame_utils.h", | 48 "frame_utils.h", |
49 "vcm_capturer.cc", | 49 "vcm_capturer.cc", |
50 "vcm_capturer.h", | 50 "vcm_capturer.h", |
51 "video_capturer.cc", | 51 "video_capturer.cc", |
52 "video_capturer.h", | 52 "video_capturer.h", |
| 53 "video_codec_settings.h", |
53 ] | 54 ] |
54 | 55 |
55 if (!build_with_chromium && is_clang) { | 56 if (!build_with_chromium && is_clang) { |
56 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 57 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
57 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 58 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
58 } | 59 } |
59 | 60 |
60 deps = [ | 61 deps = [ |
61 "..:video_stream_api", | 62 "..:video_stream_api", |
62 "..:webrtc_common", | 63 "..:webrtc_common", |
| 64 "../api/video_codecs:video_codecs_api", |
63 "../common_video", | 65 "../common_video", |
64 "../media:rtc_media_base", | 66 "../media:rtc_media_base", |
65 "../modules/video_capture:video_capture_module", | 67 "../modules/video_capture:video_capture_module", |
66 "../rtc_base:rtc_base_approved", | 68 "../rtc_base:rtc_base_approved", |
67 "../rtc_base:rtc_task_queue", | 69 "../rtc_base:rtc_task_queue", |
68 "../system_wrappers", | 70 "../system_wrappers", |
69 ] | 71 ] |
70 } | 72 } |
71 | 73 |
72 rtc_source_set("rtp_test_utils") { | 74 rtc_source_set("rtp_test_utils") { |
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 java_files = [ | 606 java_files = [ |
605 "android/org/webrtc/native_test/RTCNativeUnitTest.java", | 607 "android/org/webrtc/native_test/RTCNativeUnitTest.java", |
606 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", | 608 "android/org/webrtc/native_test/RTCNativeUnitTestActivity.java", |
607 ] | 609 ] |
608 deps = [ | 610 deps = [ |
609 "../rtc_base:base_java", | 611 "../rtc_base:base_java", |
610 "//testing/android/native_test:native_test_java", | 612 "//testing/android/native_test:native_test_java", |
611 ] | 613 ] |
612 } | 614 } |
613 } | 615 } |
OLD | NEW |