// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:build/build.dart'; import 'src/kernel_builder.dart'; /// Utility method called by build_runner to generate a build script. /// /// This method does not need to be invoked manually, and instead should /// be configured via the `build.yaml` file. Builder flutterKernelBuilder(BuilderOptions builderOptions) { final Map config = builderOptions.config; final List extraFrontEndOptions = config['extraFrontEndOptions'] ?? const []; return FlutterKernelBuilder( aot: config['aot'], disabled: config['disabled'], engineDartBinaryPath: config['engineDartBinaryPath'], frontendServerPath: config['frontendServerPath'], incrementalCompilerByteStorePath: config['incrementalCompilerByteStorePath'], linkPlatformKernelIn: config['linkPlatformKernelIn'], mainPath: config['mainPath'], packagesPath: config['packagesPath'], sdkRoot: config['sdkRoot'], targetProductVm: config['targetProductVm'], trackWidgetCreation: config['trackWidgetCreation'], extraFrontEndOptions: extraFrontEndOptions.cast(), ); }