blob: 5d28ccd0623961fb72f21f41e3695d19cf9de031 [file] [log] [blame]
# Copyright 2018 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/flutter_test.gni")
dart_library("tiler") {
package_name = "tiler"
sources = [
"tiler.dart",
]
deps = [
"//third_party/dart-pkg/git/flutter/packages/flutter",
]
}
flutter_test("tiler_unittests") {
sources = [
"tiler_test.dart",
]
deps = [
":tiler",
"//third_party/dart-pkg/git/flutter/packages/flutter_test",
]
}