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 "..:module_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 14 matching lines...) Expand all Loading... |
121 "utility/vp8_header_parser.cc", | 122 "utility/vp8_header_parser.cc", |
122 "utility/vp8_header_parser.h", | 123 "utility/vp8_header_parser.h", |
123 ] | 124 ] |
124 | 125 |
125 if (!build_with_chromium && is_clang) { | 126 if (!build_with_chromium && is_clang) { |
126 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 127 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
127 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 128 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
128 } | 129 } |
129 | 130 |
130 deps = [ | 131 deps = [ |
| 132 "..:module_api", |
131 "../..:webrtc_common", | 133 "../..:webrtc_common", |
132 "../../api/video_codecs:video_codecs_api", | 134 "../../api/video_codecs:video_codecs_api", |
133 "../../base:rtc_base_approved", | 135 "../../base:rtc_base_approved", |
134 "../../base:rtc_numerics", | 136 "../../base:rtc_numerics", |
135 "../../base:rtc_task_queue", | 137 "../../base:rtc_task_queue", |
136 "../../common_video", | 138 "../../common_video", |
137 "../../modules/rtp_rtcp:rtp_rtcp", | 139 "../../modules/rtp_rtcp:rtp_rtcp", |
138 "../../system_wrappers", | 140 "../../system_wrappers", |
139 ] | 141 ] |
140 } | 142 } |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 # TODO(jschuh): Bug 1348: fix this warning. | 219 # TODO(jschuh): Bug 1348: fix this warning. |
218 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 220 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
219 | 221 |
220 if (!build_with_chromium && is_clang) { | 222 if (!build_with_chromium && is_clang) { |
221 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 223 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
222 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 224 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
223 } | 225 } |
224 | 226 |
225 deps = [ | 227 deps = [ |
226 ":video_coding_utility", | 228 ":video_coding_utility", |
| 229 "..:module_api", |
227 "../..:webrtc_common", | 230 "../..:webrtc_common", |
228 "../../api/video_codecs:video_codecs_api", | 231 "../../api/video_codecs:video_codecs_api", |
229 "../../base:rtc_base_approved", | 232 "../../base:rtc_base_approved", |
230 "../../common_video", | 233 "../../common_video", |
231 "../../system_wrappers", | 234 "../../system_wrappers", |
232 ] | 235 ] |
233 if (rtc_build_libvpx) { | 236 if (rtc_build_libvpx) { |
234 deps += [ rtc_libvpx_dir ] | 237 deps += [ rtc_libvpx_dir ] |
235 } | 238 } |
236 } | 239 } |
(...skipping 15 matching lines...) Expand all Loading... |
252 ] | 255 ] |
253 } | 256 } |
254 | 257 |
255 if (!build_with_chromium && is_clang) { | 258 if (!build_with_chromium && is_clang) { |
256 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 259 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
257 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 260 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
258 } | 261 } |
259 | 262 |
260 deps = [ | 263 deps = [ |
261 ":video_coding_utility", | 264 ":video_coding_utility", |
| 265 "..:module_api", |
262 "../../base:rtc_base_approved", | 266 "../../base:rtc_base_approved", |
263 "../../common_video", | 267 "../../common_video", |
264 "../../system_wrappers", | 268 "../../system_wrappers", |
265 ] | 269 ] |
266 if (rtc_build_libvpx) { | 270 if (rtc_build_libvpx) { |
267 deps += [ rtc_libvpx_dir ] | 271 deps += [ rtc_libvpx_dir ] |
268 } | 272 } |
269 } | 273 } |
270 | 274 |
271 if (rtc_include_tests) { | 275 if (rtc_include_tests) { |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 if (rtc_use_h264) { | 539 if (rtc_use_h264) { |
536 sources += [ "codecs/h264/h264_encoder_impl_unittest.cc" ] | 540 sources += [ "codecs/h264/h264_encoder_impl_unittest.cc" ] |
537 } | 541 } |
538 deps = [ | 542 deps = [ |
539 ":video_codecs_test_framework", | 543 ":video_codecs_test_framework", |
540 ":video_coding", | 544 ":video_coding", |
541 ":video_coding_utility", | 545 ":video_coding_utility", |
542 ":webrtc_h264", | 546 ":webrtc_h264", |
543 ":webrtc_vp8", | 547 ":webrtc_vp8", |
544 ":webrtc_vp9", | 548 ":webrtc_vp9", |
| 549 "..:module_api", |
545 "../..:webrtc_common", | 550 "../..:webrtc_common", |
546 "../../api:video_frame_api", | 551 "../../api:video_frame_api", |
547 "../../api/video_codecs:video_codecs_api", | 552 "../../api/video_codecs:video_codecs_api", |
548 "../../base:rtc_base", | 553 "../../base:rtc_base", |
549 "../../base:rtc_base_approved", | 554 "../../base:rtc_base_approved", |
550 "../../base:rtc_task_queue", | 555 "../../base:rtc_task_queue", |
551 "../../common_video:common_video", | 556 "../../common_video:common_video", |
552 "../../system_wrappers:metrics_default", | 557 "../../system_wrappers:metrics_default", |
553 "../../system_wrappers:system_wrappers", | 558 "../../system_wrappers:system_wrappers", |
554 "../../test:field_trial", | 559 "../../test:field_trial", |
(...skipping 14 matching lines...) Expand all Loading... |
569 } | 574 } |
570 | 575 |
571 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 576 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
572 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 577 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
573 if (!build_with_chromium && is_clang) { | 578 if (!build_with_chromium && is_clang) { |
574 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 579 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
575 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 580 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
576 } | 581 } |
577 } | 582 } |
578 } | 583 } |
OLD | NEW |