OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 executable("dart_snapshotter") { |
| 6 sources = [ |
| 7 "loader.cc", |
| 8 "loader.h", |
| 9 "main.cc", |
| 10 "vm.cc", |
| 11 "vm.h", |
| 12 ] |
| 13 |
| 14 deps = [ |
| 15 "//base", |
| 16 "//build/config/sanitizers:deps", |
| 17 "//dart/runtime/vm:libdart_platform", |
| 18 "//dart/runtime:libdart", |
| 19 "//mojo/common", |
| 20 "//mojo/dart/embedder:dart_snapshot_cc", |
| 21 "//mojo/edk/system", |
| 22 "//mojo/environment:chromium", |
| 23 "//mojo/public/cpp/system", |
| 24 "//mojo/public/cpp/utility", |
| 25 "//mojo/public/interfaces/application", |
| 26 "//third_party/zlib", |
| 27 "//tonic", |
| 28 ] |
| 29 } |
OLD | NEW |