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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 "utility/vp8_header_parser.h", | 122 "utility/vp8_header_parser.h", |
123 ] | 123 ] |
124 | 124 |
125 if (!build_with_chromium && is_clang) { | 125 if (!build_with_chromium && is_clang) { |
126 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 126 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
127 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 127 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
128 } | 128 } |
129 | 129 |
130 deps = [ | 130 deps = [ |
131 "../..:webrtc_common", | 131 "../..:webrtc_common", |
132 "../../api/video_codecs:video_codecs_api", | |
133 "../../base:rtc_base_approved", | 132 "../../base:rtc_base_approved", |
134 "../../base:rtc_numerics", | 133 "../../base:rtc_numerics", |
135 "../../base:rtc_task_queue", | 134 "../../base:rtc_task_queue", |
136 "../../common_video", | 135 "../../common_video", |
137 "../../modules/rtp_rtcp:rtp_rtcp", | 136 "../../modules/rtp_rtcp:rtp_rtcp", |
138 "../../system_wrappers", | 137 "../../system_wrappers", |
139 ] | 138 ] |
140 } | 139 } |
141 | 140 |
142 rtc_static_library("webrtc_h264") { | 141 rtc_static_library("webrtc_h264") { |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 217 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
219 | 218 |
220 if (!build_with_chromium && is_clang) { | 219 if (!build_with_chromium && is_clang) { |
221 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 220 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
222 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 221 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
223 } | 222 } |
224 | 223 |
225 deps = [ | 224 deps = [ |
226 ":video_coding_utility", | 225 ":video_coding_utility", |
227 "../..:webrtc_common", | 226 "../..:webrtc_common", |
228 "../../api/video_codecs:video_codecs_api", | |
229 "../../base:rtc_base_approved", | 227 "../../base:rtc_base_approved", |
230 "../../common_video", | 228 "../../common_video", |
231 "../../system_wrappers", | 229 "../../system_wrappers", |
232 ] | 230 ] |
233 if (rtc_build_libvpx) { | 231 if (rtc_build_libvpx) { |
234 deps += [ rtc_libvpx_dir ] | 232 deps += [ rtc_libvpx_dir ] |
235 } | 233 } |
236 } | 234 } |
237 | 235 |
238 rtc_static_library("webrtc_vp9") { | 236 rtc_static_library("webrtc_vp9") { |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 if (!build_with_chromium && is_clang) { | 315 if (!build_with_chromium && is_clang) { |
318 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 316 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
319 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 317 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
320 } | 318 } |
321 | 319 |
322 deps = [ | 320 deps = [ |
323 ":video_coding", | 321 ":video_coding", |
324 ":video_coding_utility", | 322 ":video_coding_utility", |
325 ":webrtc_vp8", | 323 ":webrtc_vp8", |
326 "../..:webrtc_common", | 324 "../..:webrtc_common", |
327 "../../api/video_codecs:video_codecs_api", | |
328 "../../base:rtc_base_approved", | 325 "../../base:rtc_base_approved", |
329 "../../common_video:common_video", | 326 "../../common_video:common_video", |
330 "../../system_wrappers:system_wrappers", | 327 "../../system_wrappers:system_wrappers", |
331 "../../test:test_support", | 328 "../../test:test_support", |
332 "../../test:video_test_common", | 329 "../../test:video_test_common", |
333 "../../test:video_test_support", | 330 "../../test:video_test_support", |
334 ] | 331 ] |
335 } | 332 } |
336 | 333 |
337 rtc_source_set("video_coding_videoprocessor_integration_test") { | 334 rtc_source_set("video_coding_videoprocessor_integration_test") { |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 } | 521 } |
525 deps = [ | 522 deps = [ |
526 ":video_codecs_test_framework", | 523 ":video_codecs_test_framework", |
527 ":video_coding", | 524 ":video_coding", |
528 ":video_coding_utility", | 525 ":video_coding_utility", |
529 ":webrtc_h264", | 526 ":webrtc_h264", |
530 ":webrtc_vp8", | 527 ":webrtc_vp8", |
531 ":webrtc_vp9", | 528 ":webrtc_vp9", |
532 "../..:webrtc_common", | 529 "../..:webrtc_common", |
533 "../../api:video_frame_api", | 530 "../../api:video_frame_api", |
534 "../../api/video_codecs:video_codecs_api", | |
535 "../../base:rtc_base", | 531 "../../base:rtc_base", |
536 "../../base:rtc_base_approved", | 532 "../../base:rtc_base_approved", |
537 "../../base:rtc_task_queue", | 533 "../../base:rtc_task_queue", |
538 "../../common_video:common_video", | 534 "../../common_video:common_video", |
539 "../../system_wrappers:metrics_default", | 535 "../../system_wrappers:metrics_default", |
540 "../../system_wrappers:system_wrappers", | 536 "../../system_wrappers:system_wrappers", |
541 "../../test:field_trial", | 537 "../../test:field_trial", |
542 "../../test:test_support", | 538 "../../test:test_support", |
543 "../../test:video_test_common", | 539 "../../test:video_test_common", |
544 "../../test:video_test_support", | 540 "../../test:video_test_support", |
(...skipping 11 matching lines...) Expand all Loading... |
556 } | 552 } |
557 | 553 |
558 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 554 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
559 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 555 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
560 if (!build_with_chromium && is_clang) { | 556 if (!build_with_chromium && is_clang) { |
561 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 557 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
562 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 558 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
563 } | 559 } |
564 } | 560 } |
565 } | 561 } |
OLD | NEW |