2021-06-21 11:59:04 +00:00
|
|
|
# Stub crate for system_api
|
|
|
|
|
|
|
|
system_api is used by ChromeOS to interact with other system services.
|
|
|
|
|
2022-01-25 23:14:43 +00:00
|
|
|
In ChromeOS builds, the `chromeos` cargo feature is enabled and this crate is replaced with the
|
|
|
|
actual [system_api] implementation.
|
2021-06-21 11:59:04 +00:00
|
|
|
|
2022-01-25 23:14:43 +00:00
|
|
|
On other platforms, the feature flag will remain disabled and this crate is used to satisfy cargo
|
|
|
|
dependencies on system_api.
|
2021-06-21 11:59:04 +00:00
|
|
|
|
2022-01-25 23:14:43 +00:00
|
|
|
[system_api]: https://source.chromium.org/chromiumos/chromiumos/codesearch/+/main:src/platform2/system_api/
|