OLD | NEW |
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 # TODO(zra): These build arguments should likely be moved to a gni file that is | 5 # TODO(zra): These build arguments should likely be moved to a gni file that is |
6 # included in BUILD.gn files that care about the values of the flags. For now, | 6 # included in BUILD.gn files that care about the values of the flags. For now, |
7 # since the GN build only happens as part of a Mojo build there is no need for | 7 # since the GN build only happens as part of a Mojo build there is no need for |
8 # the indirection. | 8 # the indirection. |
9 declare_args() { | 9 declare_args() { |
10 # Instead of using is_debug, we introduce a different flag for specifying a | 10 # Instead of using is_debug, we introduce a different flag for specifying a |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 "vm/version_in.cc", | 198 "vm/version_in.cc", |
199 ] | 199 ] |
200 output = "$target_gen_dir/version.cc" | 200 output = "$target_gen_dir/version.cc" |
201 outputs = [ output, ] | 201 outputs = [ output, ] |
202 | 202 |
203 script = "../tools/make_version.py" | 203 script = "../tools/make_version.py" |
204 args = [ | 204 args = [ |
205 "--quiet", | 205 "--quiet", |
206 "--output", rebase_path(output, root_build_dir), | 206 "--output", rebase_path(output, root_build_dir), |
207 "--input", rebase_path("vm/version_in.cc", root_build_dir), | 207 "--input", rebase_path("vm/version_in.cc", root_build_dir), |
208 "--ignore_svn_revision", | |
209 ] | 208 ] |
210 } | 209 } |
211 | 210 |
212 | 211 |
213 executable("libdart_dependency_helper") { | 212 executable("libdart_dependency_helper") { |
214 configs += [":dart_config", | 213 configs += [":dart_config", |
215 ":dart_product_config", | 214 ":dart_product_config", |
216 ":dart_precompiled_runtime_config"] | 215 ":dart_precompiled_runtime_config"] |
217 deps = [ | 216 deps = [ |
218 "vm:libdart_lib_nosnapshot", | 217 "vm:libdart_lib_nosnapshot", |
219 "vm:libdart_lib", | 218 "vm:libdart_lib", |
220 "vm:libdart_vm", | 219 "vm:libdart_vm", |
221 "vm:libdart_platform", | 220 "vm:libdart_platform", |
222 "third_party/double-conversion/src:libdouble_conversion", | 221 "third_party/double-conversion/src:libdouble_conversion", |
223 ] | 222 ] |
224 sources = [ | 223 sources = [ |
225 "vm/libdart_dependency_helper.cc", | 224 "vm/libdart_dependency_helper.cc", |
226 ] | 225 ] |
227 } | 226 } |
OLD | NEW |