Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 executable("dart_snapshotter") { | 5 import("//mojo/public/mojo.gni") |
| 6 sources = [ | |
| 7 "main.cc", | |
| 8 "vm.cc", | |
| 9 "vm.h", | |
| 10 ] | |
| 11 | 6 |
| 12 deps = [ | 7 if (!mojo_use_prebuilt_dart_snapshotter) { |
|
jamesr
2015/08/17 22:10:16
this doesn't make sense. //mojo/dart/BUILD.gn is l
zra
2015/08/17 22:51:27
Removed.
| |
| 13 "//base", | 8 executable("dart_snapshotter") { |
| 14 "//build/config/sanitizers:deps", | 9 sources = [ |
| 15 "//dart/runtime/vm:libdart_platform", | 10 "main.cc", |
| 16 "//dart/runtime:libdart", | 11 "vm.cc", |
| 17 "//mojo/common", | 12 "vm.h", |
| 18 "//mojo/dart/embedder:dart_snapshot_cc", | 13 ] |
| 19 "//mojo/edk/system", | 14 |
| 20 "//mojo/environment:chromium", | 15 deps = [ |
| 21 "//mojo/public/cpp/system", | 16 "//base", |
| 22 "//mojo/public/cpp/utility", | 17 "//build/config/sanitizers:deps", |
| 23 "//mojo/public/interfaces/application", | 18 "//dart/runtime/vm:libdart_platform", |
| 24 "//third_party/zlib", | 19 "//dart/runtime:libdart", |
| 25 "//tonic", | 20 "//mojo/common", |
| 26 ] | 21 "//mojo/dart/embedder:dart_snapshot_cc", |
| 22 "//mojo/edk/system", | |
| 23 "//mojo/environment:chromium", | |
| 24 "//mojo/public/cpp/system", | |
| 25 "//mojo/public/cpp/utility", | |
| 26 "//mojo/public/interfaces/application", | |
| 27 "//third_party/zlib", | |
| 28 "//tonic", | |
| 29 ] | |
| 30 } | |
| 27 } | 31 } |
| OLD | NEW |