| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 42 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 43 | 43 |
| 44 if (!build_with_chromium && is_clang) { | 44 if (!build_with_chromium && is_clang) { |
| 45 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 45 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 46 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 46 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 47 } | 47 } |
| 48 | 48 |
| 49 deps = [ | 49 deps = [ |
| 50 "..:module_api", | 50 "..:module_api", |
| 51 "../..:webrtc_common", | 51 "../..:webrtc_common", |
| 52 "../../api:optional", |
| 52 "../../logging:rtc_event_log_api", | 53 "../../logging:rtc_event_log_api", |
| 53 "../../rtc_base:rtc_base", | 54 "../../rtc_base:rtc_base", |
| 54 "../../rtc_base:rtc_base_approved", | 55 "../../rtc_base:rtc_base_approved", |
| 55 "../../rtc_base:rtc_numerics", | 56 "../../rtc_base:rtc_numerics", |
| 56 "../../system_wrappers", | 57 "../../system_wrappers", |
| 57 "../bitrate_controller", | 58 "../bitrate_controller", |
| 58 "../pacing", | 59 "../pacing", |
| 59 "../remote_bitrate_estimator", | 60 "../remote_bitrate_estimator", |
| 60 "../rtp_rtcp", | 61 "../rtp_rtcp", |
| 61 "../utility", | 62 "../utility", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 sources = [ | 115 sources = [ |
| 115 "include/mock/mock_congestion_observer.h", | 116 "include/mock/mock_congestion_observer.h", |
| 116 "include/mock/mock_send_side_congestion_controller.h", | 117 "include/mock/mock_send_side_congestion_controller.h", |
| 117 ] | 118 ] |
| 118 deps = [ | 119 deps = [ |
| 119 ":congestion_controller", | 120 ":congestion_controller", |
| 120 "../../test:test_support", | 121 "../../test:test_support", |
| 121 ] | 122 ] |
| 122 } | 123 } |
| 123 } | 124 } |
| OLD | NEW |