• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2024 The Chromium 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 #[allow(dead_code)]
6 #[allow(non_snake_case)]
7 #[allow(non_camel_case_types)]
8 #[allow(non_upper_case_globals)]
9 mod bindings {
10     include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
11 }
12 
13 #[cfg(cpp)]
14 pub use bindings::root::*;
15 #[cfg(not(cpp))]
16 pub use bindings::*;
17