12 lines
336 B
Plaintext
12 lines
336 B
Plaintext
|
|
# Copyright 2021 The Chromium Authors
|
||
|
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
|
# found in the LICENSE file.
|
||
|
|
|
||
|
|
import("//build/rust/rust_unit_test.gni")
|
||
|
|
|
||
|
|
rust_unit_test("test_rust_unittests") {
|
||
|
|
sources = [ "main.rs" ]
|
||
|
|
crate_root = "main.rs"
|
||
|
|
deps = [ "//build/rust/tests/test_rust_static_library" ]
|
||
|
|
}
|