| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 ":generate_io_patch_cc_file", | 122 ":generate_io_patch_cc_file", |
| 123 ] | 123 ] |
| 124 include_dirs = [ | 124 include_dirs = [ |
| 125 "..", | 125 "..", |
| 126 ] | 126 ] |
| 127 set_sources_assignment_filter(["*_test.cc", "*_test.h"]) | 127 set_sources_assignment_filter(["*_test.cc", "*_test.h"]) |
| 128 sources = [ | 128 sources = [ |
| 129 "log_android.cc", | 129 "log_android.cc", |
| 130 "log_linux.cc", | 130 "log_linux.cc", |
| 131 "log_macos.cc", | 131 "log_macos.cc", |
| 132 "log_openbsd.cc", |
| 132 "log_win.cc", | 133 "log_win.cc", |
| 133 ] + builtin_impl_sources_gypi.sources | 134 ] + builtin_impl_sources_gypi.sources |
| 134 } | 135 } |
| 135 | 136 |
| 136 | 137 |
| 137 static_library("libdart_nosnapshot") { | 138 static_library("libdart_nosnapshot") { |
| 138 configs += ["..:dart_config"] | 139 configs += ["..:dart_config"] |
| 139 deps = [ | 140 deps = [ |
| 140 "../vm:libdart_lib_nosnapshot", | 141 "../vm:libdart_lib_nosnapshot", |
| 141 "../vm:libdart_vm_nosnapshot", | 142 "../vm:libdart_vm_nosnapshot", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 "address_sanitizer.cc", | 183 "address_sanitizer.cc", |
| 183 "gen_snapshot.cc", | 184 "gen_snapshot.cc", |
| 184 # Very limited native resolver provided. | 185 # Very limited native resolver provided. |
| 185 "builtin_common.cc", | 186 "builtin_common.cc", |
| 186 "builtin_gen_snapshot.cc", | 187 "builtin_gen_snapshot.cc", |
| 187 "builtin.cc", | 188 "builtin.cc", |
| 188 "builtin.h", | 189 "builtin.h", |
| 189 "platform_android.cc", | 190 "platform_android.cc", |
| 190 "platform_linux.cc", | 191 "platform_linux.cc", |
| 191 "platform_macos.cc", | 192 "platform_macos.cc", |
| 193 "platform_openbsd.cc", |
| 192 "platform_win.cc", | 194 "platform_win.cc", |
| 193 "platform.h", | 195 "platform.h", |
| 194 "vmservice_impl.cc", | 196 "vmservice_impl.cc", |
| 195 "vmservice_impl.h", | 197 "vmservice_impl.h", |
| 196 # Include generated source files. | 198 # Include generated source files. |
| 197 "$target_gen_dir/builtin_gen.cc", | 199 "$target_gen_dir/builtin_gen.cc", |
| 198 "$target_gen_dir/io_gen.cc", | 200 "$target_gen_dir/io_gen.cc", |
| 199 "$target_gen_dir/io_patch_gen.cc", | 201 "$target_gen_dir/io_patch_gen.cc", |
| 200 "$target_gen_dir/resources_gen.cc", | 202 "$target_gen_dir/resources_gen.cc", |
| 201 ] | 203 ] |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 sources += [ | 316 sources += [ |
| 315 "builtin_nolib.cc", | 317 "builtin_nolib.cc", |
| 316 "builtin_natives.cc", | 318 "builtin_natives.cc", |
| 317 "io_natives.cc", | 319 "io_natives.cc", |
| 318 "io_natives.h", | 320 "io_natives.h", |
| 319 "embedded_dart_io.cc", | 321 "embedded_dart_io.cc", |
| 320 "embedded_dart_io.h", | 322 "embedded_dart_io.h", |
| 321 "log_android.cc", | 323 "log_android.cc", |
| 322 "log_linux.cc", | 324 "log_linux.cc", |
| 323 "log_macos.cc", | 325 "log_macos.cc", |
| 326 "log_openbsd.cc", |
| 324 "log_win.cc", | 327 "log_win.cc", |
| 325 "log.h", | 328 "log.h", |
| 326 ] | 329 ] |
| 327 | 330 |
| 328 include_dirs = [ | 331 include_dirs = [ |
| 329 "..", | 332 "..", |
| 330 "//third_party" | 333 "//third_party" |
| 331 ] | 334 ] |
| 332 } | 335 } |
| OLD | NEW |