| 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 | 10 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 110 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 111 configs -= [ "//build/config/clang:extra_warnings" ] | 111 configs -= [ "//build/config/clang:extra_warnings" ] |
| 112 configs -= [ "//build/config/clang:find_bad_constructs" ] | 112 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 113 } | 113 } |
| 114 | 114 |
| 115 if (is_win) { | 115 if (is_win) { |
| 116 cflags += [ "/wd4389" ] # signed/unsigned mismatch. | 116 cflags += [ "/wd4389" ] # signed/unsigned mismatch. |
| 117 } | 117 } |
| 118 | 118 |
| 119 deps = [ | 119 deps = [ |
| 120 "../call", |
| 120 "../media", | 121 "../media", |
| 121 "../pc", | 122 "../pc", |
| 122 ] | 123 ] |
| 123 | 124 |
| 124 if (rtc_use_quic) { | 125 if (rtc_use_quic) { |
| 125 sources += [ | 126 sources += [ |
| 126 "quicdatachannel.cc", | 127 "quicdatachannel.cc", |
| 127 "quicdatachannel.h", | 128 "quicdatachannel.h", |
| 128 "quicdatatransport.cc", | 129 "quicdatatransport.cc", |
| 129 "quicdatatransport.h", | 130 "quicdatatransport.h", |
| 130 ] | 131 ] |
| 131 deps += [ "//third_party/libquic" ] | 132 deps += [ "//third_party/libquic" ] |
| 132 public_deps = [ | 133 public_deps = [ |
| 133 "//third_party/libquic", | 134 "//third_party/libquic", |
| 134 ] | 135 ] |
| 135 } | 136 } |
| 136 } | 137 } |
| OLD | NEW |