| 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 28 matching lines...) Expand all Loading... |
| 39 "transport_adapter.cc", | 39 "transport_adapter.cc", |
| 40 "transport_adapter.h", | 40 "transport_adapter.h", |
| 41 "video_receive_stream.cc", | 41 "video_receive_stream.cc", |
| 42 "video_receive_stream.h", | 42 "video_receive_stream.h", |
| 43 "video_send_stream.cc", | 43 "video_send_stream.cc", |
| 44 "video_send_stream.h", | 44 "video_send_stream.h", |
| 45 "video_stream_decoder.cc", | 45 "video_stream_decoder.cc", |
| 46 "video_stream_decoder.h", | 46 "video_stream_decoder.h", |
| 47 "vie_encoder.cc", | 47 "vie_encoder.cc", |
| 48 "vie_encoder.h", | 48 "vie_encoder.h", |
| 49 "vie_remb.cc", | |
| 50 "vie_remb.h", | |
| 51 ] | 49 ] |
| 52 | 50 |
| 53 if (!build_with_chromium && is_clang) { | 51 if (!build_with_chromium && is_clang) { |
| 54 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 52 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 55 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 53 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 56 } | 54 } |
| 57 | 55 |
| 58 deps = [ | 56 deps = [ |
| 59 "..:webrtc_common", | 57 "..:webrtc_common", |
| 60 "../api:transport_api", | 58 "../api:transport_api", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 "receive_statistics_proxy_unittest.cc", | 193 "receive_statistics_proxy_unittest.cc", |
| 196 "report_block_stats_unittest.cc", | 194 "report_block_stats_unittest.cc", |
| 197 "rtp_stream_receiver_unittest.cc", | 195 "rtp_stream_receiver_unittest.cc", |
| 198 "send_delay_stats_unittest.cc", | 196 "send_delay_stats_unittest.cc", |
| 199 "send_statistics_proxy_unittest.cc", | 197 "send_statistics_proxy_unittest.cc", |
| 200 "stats_counter_unittest.cc", | 198 "stats_counter_unittest.cc", |
| 201 "stream_synchronization_unittest.cc", | 199 "stream_synchronization_unittest.cc", |
| 202 "video_receive_stream_unittest.cc", | 200 "video_receive_stream_unittest.cc", |
| 203 "video_send_stream_tests.cc", | 201 "video_send_stream_tests.cc", |
| 204 "vie_encoder_unittest.cc", | 202 "vie_encoder_unittest.cc", |
| 205 "vie_remb_unittest.cc", | |
| 206 ] | 203 ] |
| 207 deps = [ | 204 deps = [ |
| 208 ":video", | 205 ":video", |
| 209 "../media:rtc_media_base", | 206 "../media:rtc_media_base", |
| 210 "//testing/gmock", | 207 "//testing/gmock", |
| 211 "//testing/gtest", | 208 "//testing/gtest", |
| 212 ] | 209 ] |
| 213 if (!build_with_chromium && is_clang) { | 210 if (!build_with_chromium && is_clang) { |
| 214 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 211 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 215 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 212 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 216 } | 213 } |
| 217 if (rtc_use_h264) { | 214 if (rtc_use_h264) { |
| 218 defines += [ "WEBRTC_USE_H264" ] | 215 defines += [ "WEBRTC_USE_H264" ] |
| 219 } | 216 } |
| 220 } | 217 } |
| 221 } | 218 } |
| OLD | NEW |