BUILD.gn 686 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
# Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

5
import("//build/dart/dart_library.gni")
6

7
dart_library("flutter_test") {
8 9
  package_name = "flutter_test"

10 11
  # Can be left empty as analysis is disabled.
  sources = []
12

13
  disable_analysis = true
14 15

  deps = [
16
    "../flutter",
17 18
    "//third_party/dart-pkg/pub/image",
    "//third_party/dart-pkg/pub/path",
19
    "//third_party/dart-pkg/pub/quiver",
20
    "//third_party/dart-pkg/pub/stack_trace",
21
    "//third_party/dart-pkg/pub/test",
22 23
    "//third_party/dart-pkg/pub/test_api",
    "//third_party/dart-pkg/pub/vector_math",
24 25
  ]
}