OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 if (is_android) { | 10 if (is_android) { |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 81 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
82 } | 82 } |
83 | 83 |
84 deps = [ | 84 deps = [ |
85 ":rtc_stats_api", | 85 ":rtc_stats_api", |
86 ] | 86 ] |
87 } | 87 } |
88 | 88 |
89 # TODO(ossu): Remove once downstream projects have updated. | 89 # TODO(ossu): Remove once downstream projects have updated. |
90 rtc_source_set("libjingle_peerconnection") { | 90 rtc_source_set("libjingle_peerconnection") { |
91 deps = [ | 91 public_deps = [ |
92 "../pc:libjingle_peerconnection", | 92 "../pc:libjingle_peerconnection", |
93 ] | 93 ] |
94 } | 94 } |
95 | 95 |
96 rtc_source_set("rtc_stats_api") { | 96 rtc_source_set("rtc_stats_api") { |
97 cflags = [] | 97 cflags = [] |
98 sources = [ | 98 sources = [ |
99 "stats/rtcstats.h", | 99 "stats/rtcstats.h", |
100 "stats/rtcstats_objects.h", | 100 "stats/rtcstats_objects.h", |
101 "stats/rtcstatscollectorcallback.h", | 101 "stats/rtcstatscollectorcallback.h", |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 deps = [ | 193 deps = [ |
194 ":libjingle_peerconnection_api", | 194 ":libjingle_peerconnection_api", |
195 "../base:rtc_base_approved", | 195 "../base:rtc_base_approved", |
196 ] | 196 ] |
197 if (!build_with_chromium && is_clang) { | 197 if (!build_with_chromium && is_clang) { |
198 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 198 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
199 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 199 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
200 } | 200 } |
201 } | 201 } |
202 } | 202 } |
OLD | NEW |