forked from flutter/flutter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.gn
More file actions
38 lines (34 loc) · 1.34 KB
/
BUILD.gn
File metadata and controls
38 lines (34 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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.
import("//build/dart/dart_package.gni")
dart_package("flutter_tools") {
package_name = "flutter_tools"
source_dir = "lib"
deps = [
"//dart/pkg/analyzer",
"//dart/third_party/pkg/linter",
"//third_party/dart-pkg/pub/archive",
"//third_party/dart-pkg/pub/args",
"//third_party/dart-pkg/pub/coverage",
"//third_party/dart-pkg/pub/crypto",
"//third_party/dart-pkg/pub/file",
# The HTTP dependency is removed because http doesn't work on Fuchsia
# because it uses mirrors which Fuchsia's Dart VM doesn't support.
"//third_party/dart-pkg/pub/json_rpc_2",
"//third_party/dart-pkg/pub/json_schema",
"//third_party/dart-pkg/pub/meta",
"//third_party/dart-pkg/pub/mustache",
"//third_party/dart-pkg/pub/package_config",
"//third_party/dart-pkg/pub/path",
"//third_party/dart-pkg/pub/platform",
"//third_party/dart-pkg/pub/process",
"//third_party/dart-pkg/pub/pub_semver",
"//third_party/dart-pkg/pub/stack_trace",
"//third_party/dart-pkg/pub/test",
"//third_party/dart-pkg/pub/usage",
"//third_party/dart-pkg/pub/web_socket_channel",
"//third_party/dart-pkg/pub/xml",
"//third_party/dart-pkg/pub/yaml",
]
}