blob: 0d7d37e80b6ee3ed890a0d30de150cdc87bd8c8d [file] [log] [blame]
# Copyright 2016 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.
import("//build/dart/dart_library.gni")
import("//topaz/runtime/dart/dart_test.gni")
dart_library("keyboard") {
package_name = "keyboard"
sources = [
"keyboard.dart",
"keys.dart",
"word_suggestion_service.dart",
]
deps = [
"//third_party/dart-pkg/git/flutter/packages/flutter",
"//topaz/shell/widgets",
]
}
dart_test("keyboard_tests") {
sources = [
"keyboard_test.dart",
"keys_test.dart",
]
deps = [
":keyboard",
"//third_party/dart-pkg/git/flutter/packages/flutter_test",
"//third_party/dart-pkg/pub/test",
]
}