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 config("dart_config") { | 5 config("dart_config") { |
6 defines = [] | 6 defines = [] |
7 if (is_debug) { | 7 if (is_debug) { |
8 defines += ["DEBUG"] | 8 defines += ["DEBUG"] |
9 } else { | 9 } else { |
10 defines += ["NDEBUG"] | 10 defines += ["NDEBUG"] |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 "../tools/utils.py", | 66 "../tools/utils.py", |
67 "../tools/print_version.py", | 67 "../tools/print_version.py", |
68 "../tools/VERSION", | 68 "../tools/VERSION", |
69 "vm/version_in.cc", | 69 "vm/version_in.cc", |
70 ] | 70 ] |
71 output = "$target_gen_dir/version.cc" | 71 output = "$target_gen_dir/version.cc" |
72 outputs = [ output, ] | 72 outputs = [ output, ] |
73 | 73 |
74 script = "../tools/make_version.py" | 74 script = "../tools/make_version.py" |
75 args = [ | 75 args = [ |
| 76 "--quiet", |
76 "--output", rebase_path(output, root_build_dir), | 77 "--output", rebase_path(output, root_build_dir), |
77 "--input", rebase_path("vm/version_in.cc", root_build_dir), | 78 "--input", rebase_path("vm/version_in.cc", root_build_dir), |
78 ] | 79 ] |
79 } | 80 } |
80 | 81 |
81 | 82 |
82 executable("libdart_dependency_helper") { | 83 executable("libdart_dependency_helper") { |
83 deps = [ | 84 deps = [ |
84 "vm:libdart_lib_withcore", | 85 "vm:libdart_lib_withcore", |
85 "vm:libdart_lib", | 86 "vm:libdart_lib", |
86 "vm:libdart_vm", | 87 "vm:libdart_vm", |
87 "vm:libdart_platform", | 88 "vm:libdart_platform", |
88 "third_party/jscre:libjscre", | 89 "third_party/jscre:libjscre", |
89 "third_party/double-conversion/src:libdouble_conversion", | 90 "third_party/double-conversion/src:libdouble_conversion", |
90 ] | 91 ] |
91 sources = [ | 92 sources = [ |
92 "vm/libdart_dependency_helper.cc", | 93 "vm/libdart_dependency_helper.cc", |
93 ] | 94 ] |
94 } | 95 } |
OLD | NEW |