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 | 5 |
6 declare_args() { | 6 declare_args() { |
7 dart_io_support = false | 7 dart_io_support = false |
8 } | 8 } |
9 | 9 |
10 | 10 |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 set_sources_assignment_filter(["*_test.cc", "*_test.h"]) | 101 set_sources_assignment_filter(["*_test.cc", "*_test.h"]) |
102 sources = [ | 102 sources = [ |
103 "log_android.cc", | 103 "log_android.cc", |
104 "log_linux.cc", | 104 "log_linux.cc", |
105 "log_macos.cc", | 105 "log_macos.cc", |
106 "log_win.cc", | 106 "log_win.cc", |
107 ] + builtin_impl_sources_gypi.sources | 107 ] + builtin_impl_sources_gypi.sources |
108 } | 108 } |
109 | 109 |
110 | 110 |
111 static_library("libdart_withcore") { | 111 static_library("libdart_nosnapshot") { |
112 configs += ["..:dart_config"] | 112 configs += ["..:dart_config"] |
113 deps = [ | 113 deps = [ |
114 "../vm:libdart_lib_withcore", | 114 "../vm:libdart_lib_nosnapshot", |
115 "../vm:libdart_vm", | 115 "../vm:libdart_vm_nosnapshot", |
116 "../vm:libdart_platform", | 116 "../vm:libdart_platform", |
117 "../third_party/double-conversion/src:libdouble_conversion", | 117 "../third_party/double-conversion/src:libdouble_conversion", |
118 "..:generate_version_cc_file", | 118 "..:generate_version_cc_file", |
119 ] | 119 ] |
120 | 120 |
121 sources = [ | 121 sources = [ |
122 "../include/dart_api.h", | 122 "../include/dart_api.h", |
123 "../include/dart_debugger_api.h", | 123 "../include/dart_debugger_api.h", |
124 "../include/dart_mirrors_api.h", | 124 "../include/dart_mirrors_api.h", |
125 "../include/dart_native_api.h", | 125 "../include/dart_native_api.h", |
(...skipping 10 matching lines...) Expand all Loading... |
136 | 136 |
137 defines = [ | 137 defines = [ |
138 "DART_SHARED_LIB", | 138 "DART_SHARED_LIB", |
139 ] | 139 ] |
140 } | 140 } |
141 | 141 |
142 | 142 |
143 executable("gen_snapshot") { | 143 executable("gen_snapshot") { |
144 configs += ["..:dart_config"] | 144 configs += ["..:dart_config"] |
145 deps = [ | 145 deps = [ |
146 ":libdart_withcore", | 146 ":libdart_nosnapshot", |
147 ":libdart_builtin", | 147 ":libdart_builtin", |
148 ] | 148 ] |
149 | 149 |
150 sources = [ | 150 sources = [ |
151 "address_sanitizer.cc", | 151 "address_sanitizer.cc", |
152 "gen_snapshot.cc", | 152 "gen_snapshot.cc", |
153 # Very limited native resolver provided. | 153 # Very limited native resolver provided. |
154 "builtin_common.cc", | 154 "builtin_common.cc", |
155 "builtin_gen_snapshot.cc", | 155 "builtin_gen_snapshot.cc", |
156 "builtin.cc", | 156 "builtin.cc", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 "log_macos.cc", | 232 "log_macos.cc", |
233 "log_win.cc", | 233 "log_win.cc", |
234 "log.h", | 234 "log.h", |
235 ] | 235 ] |
236 | 236 |
237 include_dirs = [ | 237 include_dirs = [ |
238 "..", | 238 "..", |
239 "//third_party" | 239 "//third_party" |
240 ] | 240 ] |
241 } | 241 } |
OLD | NEW |