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 | 10 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 87 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
88 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 88 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
89 } | 89 } |
90 | 90 |
91 deps = [ | 91 deps = [ |
92 ":video_coding_utility", | 92 ":video_coding_utility", |
93 ":webrtc_h264", | 93 ":webrtc_h264", |
94 ":webrtc_i420", | 94 ":webrtc_i420", |
95 ":webrtc_vp8", | 95 ":webrtc_vp8", |
96 ":webrtc_vp9", | 96 ":webrtc_vp9", |
| 97 "../..:video_stream_api", |
97 "../..:webrtc_common", | 98 "../..:webrtc_common", |
98 "../../base:rtc_base", | 99 "../../base:rtc_base", |
99 "../../base:rtc_base_approved", | 100 "../../base:rtc_base_approved", |
100 "../../base:rtc_numerics", | 101 "../../base:rtc_numerics", |
101 "../../base:rtc_task_queue", | 102 "../../base:rtc_task_queue", |
102 "../../common_video", | 103 "../../common_video", |
103 "../../system_wrappers", | 104 "../../system_wrappers", |
104 "../rtp_rtcp:rtp_rtcp", | 105 "../rtp_rtcp:rtp_rtcp", |
105 "../utility:utility", | 106 "../utility:utility", |
106 ] | 107 ] |
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 } | 570 } |
570 | 571 |
571 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 572 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
572 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 573 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
573 if (!build_with_chromium && is_clang) { | 574 if (!build_with_chromium && is_clang) { |
574 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 575 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
575 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 576 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
576 } | 577 } |
577 } | 578 } |
578 } | 579 } |
OLD | NEW |