Source code
Revision control
Copy as Markdown
Other Tools
# 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"
sources = [ crate_root ]
deps = [ "//chromium/build/rust/std" ]
}