| OLD | NEW |
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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 11 matching lines...) Expand all Loading... |
| 22 rtc_static_library("rtc_p2p") { | 22 rtc_static_library("rtc_p2p") { |
| 23 sources = [ | 23 sources = [ |
| 24 "base/asyncstuntcpsocket.cc", | 24 "base/asyncstuntcpsocket.cc", |
| 25 "base/asyncstuntcpsocket.h", | 25 "base/asyncstuntcpsocket.h", |
| 26 "base/basicpacketsocketfactory.cc", | 26 "base/basicpacketsocketfactory.cc", |
| 27 "base/basicpacketsocketfactory.h", | 27 "base/basicpacketsocketfactory.h", |
| 28 "base/candidate.h", | 28 "base/candidate.h", |
| 29 "base/common.h", | 29 "base/common.h", |
| 30 "base/dtlstransportchannel.cc", | 30 "base/dtlstransportchannel.cc", |
| 31 "base/dtlstransportchannel.h", | 31 "base/dtlstransportchannel.h", |
| 32 "base/icetransportinternal.h", |
| 32 "base/jseptransport.cc", | 33 "base/jseptransport.cc", |
| 33 "base/jseptransport.h", | 34 "base/jseptransport.h", |
| 34 "base/p2pconstants.cc", | 35 "base/p2pconstants.cc", |
| 35 "base/p2pconstants.h", | 36 "base/p2pconstants.h", |
| 36 "base/p2ptransportchannel.cc", | 37 "base/p2ptransportchannel.cc", |
| 37 "base/p2ptransportchannel.h", | 38 "base/p2ptransportchannel.h", |
| 38 "base/packetsocketfactory.h", | 39 "base/packetsocketfactory.h", |
| 39 "base/packettransportinterface.h", | 40 "base/packettransportinterface.h", |
| 40 "base/port.cc", | 41 "base/port.cc", |
| 41 "base/port.h", | 42 "base/port.h", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 # Suppress warnings from Chrome's Clang plugins. | 149 # Suppress warnings from Chrome's Clang plugins. |
| 149 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 150 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 150 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 151 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 151 } | 152 } |
| 152 | 153 |
| 153 deps = [ | 154 deps = [ |
| 154 "..:webrtc_common", | 155 "..:webrtc_common", |
| 155 "../base:rtc_base", | 156 "../base:rtc_base", |
| 156 ] | 157 ] |
| 157 } | 158 } |
| OLD | NEW |