Index: mojo/dart/dart_snapshotter/BUILD.gn |
diff --git a/mojo/dart/dart_snapshotter/BUILD.gn b/mojo/dart/dart_snapshotter/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2e3f8805af27ec293050fb79e83d34d117126751 |
--- /dev/null |
+++ b/mojo/dart/dart_snapshotter/BUILD.gn |
@@ -0,0 +1,32 @@ |
+# Copyright 2014 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. |
+ |
+executable("dart_snapshotter") { |
+ sources = [ |
+ "loader.cc", |
+ "loader.h", |
+ "logging.cc", |
+ "logging.h", |
+ "main.cc", |
+ "scope.h", |
+ "switches.cc", |
+ "switches.h", |
+ "vm.cc", |
+ "vm.h", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//dart/runtime/vm:libdart_platform", |
+ "//dart/runtime:libdart", |
+ "//mojo/common", |
+ "//mojo/dart/embedder:dart_snapshot_cc", |
+ "//mojo/edk/system", |
+ "//mojo/environment:chromium", |
+ "//mojo/public/cpp/system", |
+ "//mojo/public/cpp/utility", |
+ "//mojo/public/interfaces/application", |
+ "//third_party/zlib", |
+ ] |
+} |