| # Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. |
| # |
| # Use of this source code is governed by a BSD-style license |
| # that can be found in the ../../../LICENSE file in the root of the source |
| # tree. An additional intellectual property rights grant can be found |
| # in the file PATENTS. All contributing project authors may |
| # be found in the AUTHORS file in the root of the source tree. |
| |
| import("../../../webrtc.gni") |
| |
| # This target is visible to its unittest, and is visible |
| # to downstream projects, but is not allowed for any other |
| # use in webrtc. |
| # TODO: https://issues.webrtc.org/463409684 - move it out of libwebrtc sources |
| rtc_library("sigslot") { |
| visibility = [ |
| "*", |
| "../../../rtc_base:sigslot_unittest", |
| |
| # The denial rule must be last. This comment stops git cl format |
| # from moving it first. |
| "!../../../*", |
| ] |
| sources = [ |
| "sigslot.cc", |
| "sigslot.h", |
| ] |
| } |