1// Copyright 2019 The Chromium Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5import 'dart:async'; 6import 'dart:io'; 7 8import 'package:path/path.dart' as path; 9 10import 'package:flutter_devicelab/framework/adb.dart'; 11import 'package:flutter_devicelab/framework/framework.dart'; 12import 'package:flutter_devicelab/framework/utils.dart'; 13import 'package:flutter_devicelab/tasks/integration_tests.dart'; 14 15final Directory codegenAppPath = dir(path.join(flutterDirectory.path, 'dev/integration_tests/codegen')); 16 17Future<void> main() async { 18 deviceOperatingSystem = DeviceOperatingSystem.android; 19 await task(createCodegenerationIntegrationTest()); 20} 21