flutter/dev/integration_tests
Greg Spencer 2aad59314f
Add a keyboard key code generator. (#27620)
This adds a keycode generator that incorporates input from the Chromium and Android source trees, as well as some local tables, to generate static constants for the LogicalKeyboardKey and PhysicalKeyboardKey classes, as well as mappings from each of the platforms we support so far (currently only Android and Fuchsia).

This code generator parses the input files, generates an intermediate data structure (`key_data.json`) that is checked in, and then generates the Dart sources for these classes and some static maps that will also be checked in (but are not included in this PR).

The idea is that these codes don't change often, and so we don't need to generate them on every build, but we would like to be able to update them easily in the future if new data becomes available. If the existing data disappears or becomes unusable, we can maintain the checked-in data structure by hand if necessary, and still be able to generate the code.

This PR only contains the code generator, not the classes themselves. In another follow-on PR, I'll run the generator and check in the output of the generator.
2019-02-06 16:53:16 -08:00
..
android_host_app Revert "Upgrade the Gradle script to Android plugin version 3.3.0 (#26913)" (#27045) 2019-01-24 14:29:08 -08:00
android_semantics_testing Use flutter_tools to generate build_script (#27277) 2019-02-05 18:35:20 -08:00
android_views Use flutter_tools to generate build_script (#27277) 2019-02-05 18:35:20 -08:00
channels Use flutter_tools to generate build_script (#27277) 2019-02-05 18:35:20 -08:00
external_ui Use flutter_tools to generate build_script (#27277) 2019-02-05 18:35:20 -08:00
flavors Use flutter_tools to generate build_script (#27277) 2019-02-05 18:35:20 -08:00
ios_host_app Roll engine to 05fee4eeee0ff6b219b1fcc394371e5f6963cc46 (#26713) 2019-01-21 21:23:04 -08:00
named_isolates Revert "Upgrade the Gradle script to Android plugin version 3.3.0 (#26913)" (#27045) 2019-01-24 14:29:08 -08:00
platform_interaction Use flutter_tools to generate build_script (#27277) 2019-02-05 18:35:20 -08:00
ui Add a keyboard key code generator. (#27620) 2019-02-06 16:53:16 -08:00
README.md Update README.md 2018-11-09 11:07:22 -08:00

Automated Flutter integration test suites. Each suite consists of either a complete Flutter app and a flutter_driver specification that drives tests from the UI, or a native app that is meant to integrate with Flutter for testing.

Intended for use with devicelab tests.