blob: e360e011be860f426f554110a970bc5f8978e300 [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",
"src/tile.dart",
"src/tiler.dart",
"src/sizer.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",
]
}