blob: 46a8a13d33fe793fbda03c021fa1c087db9d35f0 [file] [log] [blame] [edit]
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// A library that contains the argument and file formats for implementing a
/// build hook (`hook/build.dart`).
library native_assets_cli;
export 'src/api/architecture.dart' show Architecture;
export 'src/api/asset.dart'
show
Asset,
DataAsset,
DynamicLoadingBundled,
DynamicLoadingSystem,
LinkMode,
LookupInExecutable,
LookupInProcess,
NativeCodeAsset,
StaticLinking;
export 'src/api/build.dart';
export 'src/api/build_config.dart' show BuildConfig, CCompilerConfig;
export 'src/api/build_mode.dart' show BuildMode;
export 'src/api/build_output.dart' show BuildOutput, LinkOutput;
export 'src/api/hook_config.dart' show HookConfig;
export 'src/api/ios_sdk.dart' show IOSSdk;
export 'src/api/link.dart';
export 'src/api/link_config.dart' show LinkConfig;
export 'src/api/link_mode_preference.dart' show LinkModePreference;
export 'src/api/os.dart' show OS;