From 2f397e5dc3c16e3931ec04833f4c8592ff05c4c0 Mon Sep 17 00:00:00 2001 From: Andrew Davies Date: Fri, 18 May 2018 11:05:16 -0700 Subject: [PATCH] [frdb] Add BUILD.gn file. (#17673) Adds fuchsia_remote_debug_protocol gn file. --- .../fuchsia_remote_debug_protocol/BUILD.gn | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 packages/fuchsia_remote_debug_protocol/BUILD.gn diff --git a/packages/fuchsia_remote_debug_protocol/BUILD.gn b/packages/fuchsia_remote_debug_protocol/BUILD.gn new file mode 100644 index 0000000000..d654f0f371 --- /dev/null +++ b/packages/fuchsia_remote_debug_protocol/BUILD.gn @@ -0,0 +1,19 @@ +import("//build/dart/dart_library.gni") + +dart_library("fuchsia_remote_debug_protocol") { + package_name = "fuchsia_remote_debug_protocol" + + # Can be left empty as analysis is disabled. + sources = [] + + disable_analysis = true + + deps = [ + "//third_party/dart-pkg/git/flutter/packages/flutter", + "//third_party/dart-pkg/git/flutter/packages/flutter_test", + "//third_party/dart-pkg/pub/json_rpc_2", + "//third_party/dart-pkg/pub/meta", + "//third_party/dart-pkg/pub/process", + "//third_party/dart-pkg/pub/web_socket_channel", + ] +}