| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "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_gen_snapshot.cc", | 155 "builtin_gen_snapshot.cc", |
| 155 "builtin.cc", | 156 "builtin.cc", |
| 156 "builtin.h", | 157 "builtin.h", |
| 158 "platform_android.cc", |
| 159 "platform_linux.cc", |
| 160 "platform_macos.cc", |
| 161 "platform_win.cc", |
| 162 "platform.h", |
| 157 # Include generated source files. | 163 # Include generated source files. |
| 158 "$target_gen_dir/builtin_gen.cc", | 164 "$target_gen_dir/builtin_gen.cc", |
| 159 "$target_gen_dir/io_gen.cc", | 165 "$target_gen_dir/io_gen.cc", |
| 160 "$target_gen_dir/io_patch_gen.cc", | 166 "$target_gen_dir/io_patch_gen.cc", |
| 161 ] | 167 ] |
| 162 | 168 |
| 163 include_dirs = [ | 169 include_dirs = [ |
| 164 "..", | 170 "..", |
| 165 ] | 171 ] |
| 166 } | 172 } |
| 167 | 173 |
| 168 | 174 |
| 169 static_library("libdart_embedder_noio") { | 175 static_library("libdart_embedder_noio") { |
| 170 configs += ["..:dart_config",] | 176 configs += ["..:dart_config",] |
| 171 deps = [ | 177 deps = [ |
| 172 "..:libdart", | 178 "..:libdart", |
| 173 "../vm:libdart_platform", | 179 "../vm:libdart_platform", |
| 174 ] | 180 ] |
| 175 } | 181 } |
| OLD | NEW |