Android.bp 581 B

1234567891011121314151617181920212223242526
  1. package {
  2. default_applicable_licenses: ["Android-Apache-2.0"],
  3. }
  4. bootstrap_go_package {
  5. name: "soong-rust-config",
  6. pkgPath: "android/soong/rust/config",
  7. deps: [
  8. "soong-android",
  9. "soong-cc-config",
  10. ],
  11. srcs: [
  12. "arm_device.go",
  13. "arm64_device.go",
  14. "global.go",
  15. "lints.go",
  16. "toolchain.go",
  17. "allowed_list.go",
  18. "x86_darwin_host.go",
  19. "x86_linux_bionic_host.go",
  20. "x86_linux_host.go",
  21. "x86_device.go",
  22. "x86_64_device.go",
  23. "arm64_linux_host.go",
  24. ],
  25. }