| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 | 142 |
| 143 | 143 |
| 144 executable("gen_snapshot") { | 144 executable("gen_snapshot") { |
| 145 configs += ["..:dart_config"] | 145 configs += ["..:dart_config"] |
| 146 deps = [ | 146 deps = [ |
| 147 ":libdart_withcore", | 147 ":libdart_withcore", |
| 148 ":libdart_builtin", | 148 ":libdart_builtin", |
| 149 ] | 149 ] |
| 150 | 150 |
| 151 sources = [ | 151 sources = [ |
| 152 "address_sanitizer.cc", |
| 152 "gen_snapshot.cc", | 153 "gen_snapshot.cc", |
| 153 # Very limited native resolver provided. | 154 # Very limited native resolver provided. |
| 154 "builtin_common.cc", | 155 "builtin_common.cc", |
| 155 "builtin_gen_snapshot.cc", | 156 "builtin_gen_snapshot.cc", |
| 156 "builtin.cc", | 157 "builtin.cc", |
| 157 "builtin.h", | 158 "builtin.h", |
| 158 "platform_android.cc", | 159 "platform_android.cc", |
| 159 "platform_linux.cc", | 160 "platform_linux.cc", |
| 160 "platform_macos.cc", | 161 "platform_macos.cc", |
| 161 "platform_win.cc", | 162 "platform_win.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 172 } | 173 } |
| 173 | 174 |
| 174 | 175 |
| 175 static_library("libdart_embedder_noio") { | 176 static_library("libdart_embedder_noio") { |
| 176 configs += ["..:dart_config",] | 177 configs += ["..:dart_config",] |
| 177 deps = [ | 178 deps = [ |
| 178 "..:libdart", | 179 "..:libdart", |
| 179 "../vm:libdart_platform", | 180 "../vm:libdart_platform", |
| 180 ] | 181 ] |
| 181 } | 182 } |
| OLD | NEW |