Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(415)

Side by Side Diff: runtime/BUILD.gn

Issue 850053005: Disables printing a version string to the console for GN build. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/make_version.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | tools/make_version.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698