blob: 879639dc91738f7458e4fa2539fe2a22f71a91a5 [file] [log] [blame]
# Copyright 2024 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")
rtc_library("halton_sequence") {
sources = [
"halton_sequence.cc",
"halton_sequence.h",
]
deps = [ "../../rtc_base:checks" ]
}
if (rtc_include_tests) {
rtc_library("halton_sequence_unittest") {
testonly = true
sources = [ "halton_sequence_unittest.cc" ]
deps = [
":halton_sequence",
"../../test/:test_support",
]
}
rtc_library("corruption_detection_tests") {
testonly = true
sources = []
deps = [ ":halton_sequence_unittest" ]
}
}