Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2453)

Unified Diff: pkg/analyzer_plugin/BUILD.gn

Issue 2659523006: Create the directory for the plugin package (Closed)
Patch Set: clean up Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer_plugin/BUILD.gn
diff --git a/pkg/analyzer_plugin/BUILD.gn b/pkg/analyzer_plugin/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..bbb9090a940ca04573529d08fd57dd1c52e62d9e
--- /dev/null
+++ b/pkg/analyzer_plugin/BUILD.gn
@@ -0,0 +1,28 @@
+# Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
+# for details. 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("analyzer_plugin") {
+ package_name = "analyzer_plugin"
+
+ source_dir = "lib"
+
+ deps = [
+ "//dart/pkg/analyzer",
+ "//dart/pkg/front_end",
+ "//third_party/dart-pkg/pub/args",
+ "//third_party/dart-pkg/pub/charcode",
+ "//third_party/dart-pkg/pub/crypto",
+ "//third_party/dart-pkg/pub/glob",
+ "//third_party/dart-pkg/pub/html",
+ "//third_party/dart-pkg/pub/isolate",
+ "//third_party/dart-pkg/pub/meta",
+ "//third_party/dart-pkg/pub/package_config",
+ "//third_party/dart-pkg/pub/path",
+ "//third_party/dart-pkg/pub/plugin",
+ "//third_party/dart-pkg/pub/watcher",
+ "//third_party/dart-pkg/pub/yaml",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698