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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 "../common_video", | 270 "../common_video", |
271 "../logging:rtc_event_log_api", | 271 "../logging:rtc_event_log_api", |
272 "../media:rtc_media", | 272 "../media:rtc_media", |
273 "../media:rtc_media_base", | 273 "../media:rtc_media_base", |
274 "../media:rtc_media_tests_utils", | 274 "../media:rtc_media_tests_utils", |
275 "../modules:module_api", | 275 "../modules:module_api", |
276 "../modules/pacing", | 276 "../modules/pacing", |
277 "../modules/rtp_rtcp", | 277 "../modules/rtp_rtcp", |
278 "../modules/rtp_rtcp:mock_rtp_rtcp", | 278 "../modules/rtp_rtcp:mock_rtp_rtcp", |
279 "../modules/utility", | 279 "../modules/utility", |
| 280 "../modules/utility:mock_process_thread", |
280 "../modules/video_coding", | 281 "../modules/video_coding", |
281 "../modules/video_coding:video_coding_utility", | 282 "../modules/video_coding:video_coding_utility", |
282 "../modules/video_coding:webrtc_h264", | 283 "../modules/video_coding:webrtc_h264", |
283 "../modules/video_coding:webrtc_vp8", | 284 "../modules/video_coding:webrtc_vp8", |
284 "../modules/video_coding:webrtc_vp9", | 285 "../modules/video_coding:webrtc_vp9", |
285 "../rtc_base:rtc_base_approved", | 286 "../rtc_base:rtc_base_approved", |
286 "../rtc_base:rtc_base_tests_utils", | 287 "../rtc_base:rtc_base_tests_utils", |
287 "../system_wrappers", | 288 "../system_wrappers", |
288 "../system_wrappers:field_trial_default", | 289 "../system_wrappers:field_trial_default", |
289 "../system_wrappers:metrics_api", | 290 "../system_wrappers:metrics_api", |
290 "../system_wrappers:metrics_default", | 291 "../system_wrappers:metrics_default", |
291 "../test:direct_transport", | 292 "../test:direct_transport", |
292 "../test:field_trial", | 293 "../test:field_trial", |
293 "../test:rtp_test_utils", | 294 "../test:rtp_test_utils", |
294 "../test:test_common", | 295 "../test:test_common", |
295 "../test:test_support", | 296 "../test:test_support", |
296 "../test:video_test_common", | 297 "../test:video_test_common", |
297 "//testing/gmock", | 298 "//testing/gmock", |
298 "//testing/gtest", | 299 "//testing/gtest", |
299 ] | 300 ] |
300 if (!build_with_chromium && is_clang) { | 301 if (!build_with_chromium && is_clang) { |
301 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 302 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
302 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 303 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
303 } | 304 } |
304 if (rtc_use_h264) { | 305 if (rtc_use_h264) { |
305 defines += [ "WEBRTC_USE_H264" ] | 306 defines += [ "WEBRTC_USE_H264" ] |
306 } | 307 } |
307 } | 308 } |
308 } | 309 } |
OLD | NEW |