| 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 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 if (is_clang) { | 108 if (is_clang) { |
| 109 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 109 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 110 configs -= [ "//build/config/clang:find_bad_constructs" ] | 110 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 111 } | 111 } |
| 112 | 112 |
| 113 deps = [ | 113 deps = [ |
| 114 "../call", | 114 "../call", |
| 115 "../media", | 115 "../media", |
| 116 "../pc", | 116 "../pc", |
| 117 "../system_wrappers:field_trial_default", |
| 117 ] | 118 ] |
| 118 | 119 |
| 119 if (rtc_use_quic) { | 120 if (rtc_use_quic) { |
| 120 sources += [ | 121 sources += [ |
| 121 "quicdatachannel.cc", | 122 "quicdatachannel.cc", |
| 122 "quicdatachannel.h", | 123 "quicdatachannel.h", |
| 123 "quicdatatransport.cc", | 124 "quicdatatransport.cc", |
| 124 "quicdatatransport.h", | 125 "quicdatatransport.h", |
| 125 ] | 126 ] |
| 126 deps += [ "//third_party/libquic" ] | 127 deps += [ "//third_party/libquic" ] |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 190 |
| 190 if (is_win) { | 191 if (is_win) { |
| 191 cflags += [ | 192 cflags += [ |
| 192 "/wd4245", # conversion from "int" to "size_t", signed/unsigned mismatc
h. | 193 "/wd4245", # conversion from "int" to "size_t", signed/unsigned mismatc
h. |
| 193 "/wd4389", # signed/unsigned mismatch. | 194 "/wd4389", # signed/unsigned mismatch. |
| 194 ] | 195 ] |
| 195 } | 196 } |
| 196 | 197 |
| 197 deps = [ | 198 deps = [ |
| 198 ":libjingle_peerconnection", | 199 ":libjingle_peerconnection", |
| 199 "../system_wrappers:field_trial_default", | |
| 200 "../system_wrappers:metrics_default", | 200 "../system_wrappers:metrics_default", |
| 201 ] | 201 ] |
| 202 | 202 |
| 203 if (rtc_build_libyuv) { | 203 if (rtc_build_libyuv) { |
| 204 deps += [ "$rtc_libyuv_dir" ] | 204 deps += [ "$rtc_libyuv_dir" ] |
| 205 public_deps = [ | 205 public_deps = [ |
| 206 "$rtc_libyuv_dir", | 206 "$rtc_libyuv_dir", |
| 207 ] | 207 ] |
| 208 } else { | 208 } else { |
| 209 # Need to add a directory normally exported by libyuv. | 209 # Need to add a directory normally exported by libyuv. |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 "../pc:rtc_pc", | 391 "../pc:rtc_pc", |
| 392 "../system_wrappers:metrics_default", | 392 "../system_wrappers:metrics_default", |
| 393 "//testing/gmock", | 393 "//testing/gmock", |
| 394 ] | 394 ] |
| 395 | 395 |
| 396 if (is_android) { | 396 if (is_android) { |
| 397 deps += [ "//testing/android/native_test:native_test_support" ] | 397 deps += [ "//testing/android/native_test:native_test_support" ] |
| 398 } | 398 } |
| 399 } | 399 } |
| 400 } | 400 } |
| OLD | NEW |