OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 import("//build/dart/dart_package.gni") |
| 6 |
| 7 dart_package("analyzer_plugin") { |
| 8 package_name = "analyzer_plugin" |
| 9 |
| 10 source_dir = "lib" |
| 11 |
| 12 deps = [ |
| 13 "//dart/pkg/analyzer", |
| 14 "//dart/pkg/front_end", |
| 15 "//third_party/dart-pkg/pub/args", |
| 16 "//third_party/dart-pkg/pub/charcode", |
| 17 "//third_party/dart-pkg/pub/crypto", |
| 18 "//third_party/dart-pkg/pub/glob", |
| 19 "//third_party/dart-pkg/pub/html", |
| 20 "//third_party/dart-pkg/pub/isolate", |
| 21 "//third_party/dart-pkg/pub/meta", |
| 22 "//third_party/dart-pkg/pub/package_config", |
| 23 "//third_party/dart-pkg/pub/path", |
| 24 "//third_party/dart-pkg/pub/plugin", |
| 25 "//third_party/dart-pkg/pub/watcher", |
| 26 "//third_party/dart-pkg/pub/yaml", |
| 27 ] |
| 28 } |
OLD | NEW |