| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 "$target_gen_dir/io_gen.cc", | 168 "$target_gen_dir/io_gen.cc", |
| 169 "$target_gen_dir/io_patch_gen.cc", | 169 "$target_gen_dir/io_patch_gen.cc", |
| 170 ] | 170 ] |
| 171 | 171 |
| 172 include_dirs = [ | 172 include_dirs = [ |
| 173 "..", | 173 "..", |
| 174 ] | 174 ] |
| 175 } | 175 } |
| 176 | 176 |
| 177 | 177 |
| 178 static_library("libdart_embedder_noio") { | 178 source_set("libdart_embedder_noio") { |
| 179 configs += ["..:dart_config",] | 179 configs += ["..:dart_config",] |
| 180 deps = [ | 180 deps = [ |
| 181 "..:libdart", | 181 "..:libdart", |
| 182 "../vm:libdart_platform", | 182 "../vm:libdart_platform", |
| 183 ] | 183 ] |
| 184 } | 184 } |
| 185 | 185 |
| 186 io_impl_sources_gypi = | 186 io_impl_sources_gypi = |
| 187 exec_script("../../tools/gypi_to_gn.py", | 187 exec_script("../../tools/gypi_to_gn.py", |
| 188 [ rebase_path("io_impl_sources.gypi") ], | 188 [ rebase_path("io_impl_sources.gypi") ], |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 "log_macos.cc", | 235 "log_macos.cc", |
| 236 "log_win.cc", | 236 "log_win.cc", |
| 237 "log.h", | 237 "log.h", |
| 238 ] | 238 ] |
| 239 | 239 |
| 240 include_dirs = [ | 240 include_dirs = [ |
| 241 "..", | 241 "..", |
| 242 "//third_party" | 242 "//third_party" |
| 243 ] | 243 ] |
| 244 } | 244 } |
| OLD | NEW |