1 // Copyright 2024 The ChromiumOS Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 //! cros-libva bindings generator in Android. 6 7 #[path = "../lib/bindgen_gen.rs"] 8 mod bindgen_gen; 9 main()10fn main() { 11 bindgen_cmd::build(bindgen_gen::vaapi_gen_builder); 12 } 13