BUILD.gn 473 Bytes
Newer Older
1 2 3 4
# Copyright 2016 The Chromium Authors. All rights reserved.
# 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 19 20
    "//third_party/dart-pkg/pub/quiver",
    "//third_party/dart-pkg/pub/test",
  ]
}