Add build file

Change-Id: I51cd7c66c61c0fe544f4792e47ec339434e6d021
diff --git a/BUILD.gn b/BUILD.gn
new file mode 100644
index 0000000..a3aa640
--- /dev/null
+++ b/BUILD.gn
@@ -0,0 +1,25 @@
+# Copyright 2018 The Fuchsia Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+ 
+# This file is currently a stopgap for building on Fuchsia
+# contact bwb@google.com if you are running into problems with
+# how it is mirrored
+ 
+import("//build/rust/rustc_library.gni")
+ 
+rustc_library("rustyline") {
+  name = "rustyline"
+  edition = "2015"
+  deps = [
+    "//garnet/public/rust/crates/fuchsia-device",
+    "//garnet/public/rust/crates/fuchsia-zircon",
+ 
+    "//third_party/rust-crates/rustc_deps:log",
+    "//third_party/rust-crates/rustc_deps:libc",
+    "//third_party/rust-crates/rustc_deps:memchr",
+    "//third_party/rust-crates/rustc_deps:unicode-segmentation",
+    "//third_party/rust-crates/rustc_deps:unicode-width",
+    "//third_party/rust-crates/rustc_deps:utf8parse",
+  ]
+}