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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 ] | 53 ] |
54 } | 54 } |
55 } | 55 } |
56 | 56 |
57 | 57 |
58 static_library("libdart") { | 58 static_library("libdart") { |
59 configs += [":dart_config"] | 59 configs += [":dart_config"] |
60 deps = [ | 60 deps = [ |
61 "vm:libdart_lib", | 61 "vm:libdart_lib", |
62 "vm:libdart_vm", | 62 "vm:libdart_vm", |
63 "third_party/jscre:libjscre", | |
64 "third_party/double-conversion/src:libdouble_conversion", | 63 "third_party/double-conversion/src:libdouble_conversion", |
65 ":generate_version_cc_file", | 64 ":generate_version_cc_file", |
66 ] | 65 ] |
67 include_dirs = [ | 66 include_dirs = [ |
68 ".", | 67 ".", |
69 ] | 68 ] |
70 sources = [ | 69 sources = [ |
71 "include/dart_api.h", | 70 "include/dart_api.h", |
72 "include/dart_debugger_api.h", | 71 "include/dart_debugger_api.h", |
73 "include/dart_mirrors_api.h", | 72 "include/dart_mirrors_api.h", |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 } | 108 } |
110 | 109 |
111 | 110 |
112 executable("libdart_dependency_helper") { | 111 executable("libdart_dependency_helper") { |
113 configs += [":dart_config"] | 112 configs += [":dart_config"] |
114 deps = [ | 113 deps = [ |
115 "vm:libdart_lib_withcore", | 114 "vm:libdart_lib_withcore", |
116 "vm:libdart_lib", | 115 "vm:libdart_lib", |
117 "vm:libdart_vm", | 116 "vm:libdart_vm", |
118 "vm:libdart_platform", | 117 "vm:libdart_platform", |
119 "third_party/jscre:libjscre", | |
120 "third_party/double-conversion/src:libdouble_conversion", | 118 "third_party/double-conversion/src:libdouble_conversion", |
121 ] | 119 ] |
122 sources = [ | 120 sources = [ |
123 "vm/libdart_dependency_helper.cc", | 121 "vm/libdart_dependency_helper.cc", |
124 ] | 122 ] |
125 } | 123 } |
OLD | NEW |