1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#![recursion_limit = "1024"]

#[macro_use]
extern crate anyhow;

pub mod audio;
pub mod bluetooth;
pub mod common_utils;
pub mod component;
pub mod device;
pub mod diagnostics;
pub mod factory_reset;
pub mod factory_store;
pub mod feedback_data_provider;
pub mod fidl;
pub mod file;
pub mod flatland_example;
pub mod hardware_power_statecontrol;
pub mod hwinfo;
pub mod input;
pub mod location;
pub mod logging;
pub mod media_session;
pub mod modular;
pub mod netstack;
pub mod paver;
pub mod power;
pub mod proxy;
pub mod scenic;
pub mod server;
pub mod setui;
pub mod system_metrics;
pub mod temperature;
pub mod time;
pub mod traceutil;
pub mod tracing;
pub mod virtual_camera;
pub mod weave;
pub mod webdriver;
pub mod wlan;
pub mod wlan_deprecated;
pub mod wlan_phy;
pub mod wlan_policy;
pub mod wpan;