blob: 59d556d5fda8b2ef1573988a5ff6f900d01d08ad [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("//build/dart/test.gni")
dart_library("common") {
package_name = "tictactoe_common"
sources = [
"common.dart",
"src/board.dart",
"src/game.dart",
"src/score.dart",
"src/score_codec.dart",
"src/square.dart",
"src/win_detection.dart",
]
deps = [
"//topaz/public/lib/schemas/dart",
]
}
dart_test("tictactoe_game_test") {
sources = [
"game_test.dart",
"win_detection_test.dart",
]
deps = [
":common",
"//third_party/dart-pkg/git/flutter/packages/flutter_test",
"//third_party/dart-pkg/pub/test",
]
}