| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "video_send_stream.cc", | 41 "video_send_stream.cc", |
| 42 "video_send_stream.h", | 42 "video_send_stream.h", |
| 43 "video_stream_decoder.cc", | 43 "video_stream_decoder.cc", |
| 44 "video_stream_decoder.h", | 44 "video_stream_decoder.h", |
| 45 "vie_encoder.cc", | 45 "vie_encoder.cc", |
| 46 "vie_encoder.h", | 46 "vie_encoder.h", |
| 47 "vie_remb.cc", | 47 "vie_remb.cc", |
| 48 "vie_remb.h", | 48 "vie_remb.h", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 public_configs = [ "..:common_inherited_config" ] | |
| 52 | |
| 53 if (is_clang) { | 51 if (is_clang) { |
| 54 # Suppress warnings from Chrome's Clang plugins. | 52 # Suppress warnings from Chrome's Clang plugins. |
| 55 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 53 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 56 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 54 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 57 } | 55 } |
| 58 | 56 |
| 59 deps = [ | 57 deps = [ |
| 60 "..:rtc_event_log", | 58 "..:rtc_event_log", |
| 61 "..:webrtc_common", | 59 "..:webrtc_common", |
| 62 "../base:rtc_base_approved", | 60 "../base:rtc_base_approved", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "//testing/gmock", | 100 "//testing/gmock", |
| 103 "//testing/gtest", | 101 "//testing/gtest", |
| 104 ] | 102 ] |
| 105 if (is_clang) { | 103 if (is_clang) { |
| 106 # Suppress warnings from the Chromium Clang plugin. | 104 # Suppress warnings from the Chromium Clang plugin. |
| 107 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 105 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 108 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 106 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 109 } | 107 } |
| 110 } | 108 } |
| 111 } | 109 } |
| OLD | NEW |