blob: a800720fbcb2b993c0f2d7529eac8615827340a7 [file] [log] [blame]
# 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.
# This should be the simplest possible exe with no dependencies,
# to make it easy to investigate build problems.
# For this reason it uses 'executable' directly rather than
# //build/rust/rust_executable.gni.
executable("test_simple_rust_exe") {
crate_root = "main.rs"
deps = [ "//build/rust/std:local_std_for_rustc" ]
}