910e62b5创建于 1月15日历史提交
# Copyright 2022 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_executable.gni")

rust_executable("windows_sys_test") {
  allow_unsafe = true  # Calls FFI.
  deps = [ "//third_party/rust/windows_sys/v0_52:lib" ]
  sources = [ "main.rs" ]
  crate_root = "main.rs"
}