建構規則

Android 的建構系統 (Soong) 透過以下模組支援 Rust:

模組型態敘述
rust_binary生成一個 Rust 執行檔。
rust_library生成一個 Rust 函式庫,及其對應的 rlibdylib 變體。
rust_ffi生成一個可被 cc 模組使用的 Rust C 函式庫,及其對應的靜態和共享變體。
rust_proc_macro生成一個 proc-macro Rust 函式庫,類似於編譯器 擴充。
rust_test使用Rust自動化測試框架,生成一個 Rust 測試檔。
rust_fuzz生成一個使用 libfuzzer 的 Rust 模糊測試執行檔。
rust_protobuf生成對應 protobuf 介面的 Rust 原始碼及函式庫。
rust_bindgen生成用於連接 C 函式庫的 Rust 原始碼及函式庫。

接下來我們會探討 rust_binaryrust_library