mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-12 13:40:59 +00:00
13 lines
510 B
Rust
13 lines
510 B
Rust
// Copyright 2022 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// TODO(crbug.com/1298039): A buildflag macro should be used instead.
|
|
#[cfg(buildflag__build_rust_json_parser)]
|
|
#[path = "values_unittest.rs"]
|
|
mod values_unittest;
|
|
|
|
// TODO(crbug.com/1298039): A buildflag macro should be used instead.
|
|
#[cfg(buildflag__build_rust_json_parser)]
|
|
#[path = "json/json_parser_unittest.rs"]
|
|
mod json_parser_unittest;
|