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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "video_codec_settings.h", | 53 "video_codec_settings.h", |
54 ] | 54 ] |
55 | 55 |
56 if (!build_with_chromium && is_clang) { | 56 if (!build_with_chromium && is_clang) { |
57 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 57 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
58 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 58 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
59 } | 59 } |
60 | 60 |
61 deps = [ | 61 deps = [ |
62 "..:webrtc_common", | 62 "..:webrtc_common", |
| 63 "../api:optional", |
63 "../api/video_codecs:video_codecs_api", | 64 "../api/video_codecs:video_codecs_api", |
64 "../call:video_stream_api", | 65 "../call:video_stream_api", |
65 "../common_video", | 66 "../common_video", |
66 "../media:rtc_media_base", | 67 "../media:rtc_media_base", |
67 "../modules/video_capture:video_capture_module", | 68 "../modules/video_capture:video_capture_module", |
68 "../rtc_base:rtc_base_approved", | 69 "../rtc_base:rtc_base_approved", |
69 "../rtc_base:rtc_task_queue", | 70 "../rtc_base:rtc_task_queue", |
70 "../system_wrappers", | 71 "../system_wrappers", |
71 ] | 72 ] |
72 } | 73 } |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 | 364 |
364 rtc_source_set("fileutils") { | 365 rtc_source_set("fileutils") { |
365 testonly = true | 366 testonly = true |
366 visibility = [ ":*" ] | 367 visibility = [ ":*" ] |
367 sources = [ | 368 sources = [ |
368 "testsupport/fileutils.cc", | 369 "testsupport/fileutils.cc", |
369 "testsupport/fileutils.h", | 370 "testsupport/fileutils.h", |
370 ] | 371 ] |
371 deps = [ | 372 deps = [ |
372 "..:webrtc_common", | 373 "..:webrtc_common", |
| 374 "../api:optional", |
373 "../rtc_base:rtc_base_approved", | 375 "../rtc_base:rtc_base_approved", |
374 ] | 376 ] |
375 if (is_ios) { | 377 if (is_ios) { |
376 deps += [ ":fileutils_objc" ] | 378 deps += [ ":fileutils_objc" ] |
377 } | 379 } |
378 if (is_win) { | 380 if (is_win) { |
379 deps += [ "../rtc_base:rtc_base" ] | 381 deps += [ "../rtc_base:rtc_base" ] |
380 } | 382 } |
381 } | 383 } |
382 | 384 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 | 429 |
428 rtc_source_set("fileutils_unittests") { | 430 rtc_source_set("fileutils_unittests") { |
429 testonly = true | 431 testonly = true |
430 visibility = [ ":*" ] # Only targets in this file can depend on this. | 432 visibility = [ ":*" ] # Only targets in this file can depend on this. |
431 sources = [ | 433 sources = [ |
432 "testsupport/fileutils_unittest.cc", | 434 "testsupport/fileutils_unittest.cc", |
433 ] | 435 ] |
434 deps = [ | 436 deps = [ |
435 ":fileutils", | 437 ":fileutils", |
436 ":test_support", | 438 ":test_support", |
| 439 "../api:optional", |
437 "../rtc_base:rtc_base_approved", | 440 "../rtc_base:rtc_base_approved", |
438 "//testing/gmock", | 441 "//testing/gmock", |
439 "//testing/gtest", | 442 "//testing/gtest", |
440 ] | 443 ] |
441 } | 444 } |
442 | 445 |
443 rtc_source_set("direct_transport") { | 446 rtc_source_set("direct_transport") { |
444 testonly = true | 447 testonly = true |
445 sources = [ | 448 sources = [ |
446 "direct_transport.cc", | 449 "direct_transport.cc", |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
714 ] | 717 ] |
715 deps = [ | 718 deps = [ |
716 "../rtc_base:base_java", | 719 "../rtc_base:base_java", |
717 "//testing/android/native_test:native_test_java", | 720 "//testing/android/native_test:native_test_java", |
718 ] | 721 ] |
719 | 722 |
720 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 | 723 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 |
721 no_build_hooks = true | 724 no_build_hooks = true |
722 } | 725 } |
723 } | 726 } |
OLD | NEW |