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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 "*secure_socket.cc", | 201 "*secure_socket.cc", |
202 "*secure_socket.h", | 202 "*secure_socket.h", |
203 "*filter_unsupported.cc", | 203 "*filter_unsupported.cc", |
204 "*io_service_unsupported.cc", | 204 "*io_service_unsupported.cc", |
205 "*_test.cc", | 205 "*_test.cc", |
206 "*_test.h", | 206 "*_test.h", |
207 "*dbg*", | 207 "*dbg*", |
208 "builtin.cc", | 208 "builtin.cc", |
209 "builtin_gen_snapshot.cc", | 209 "builtin_gen_snapshot.cc", |
210 ] | 210 ] |
211 if (!is_mac) { | 211 if (!is_mac && !is_ios) { |
212 # Dart tree uses *_macos.* instead of *_mac.* | 212 # Dart tree uses *_macos.* instead of *_mac.* |
213 custom_sources_filter += [ | 213 custom_sources_filter += [ |
214 "*_macos.h", | 214 "*_macos.h", |
215 "*_macos.cc", | 215 "*_macos.cc", |
216 ] | 216 ] |
217 } | 217 } |
218 set_sources_assignment_filter(custom_sources_filter) | 218 set_sources_assignment_filter(custom_sources_filter) |
219 | 219 |
220 defines = [ "DART_IO_SECURE_SOCKET_DISABLED" ] | 220 defines = [ "DART_IO_SECURE_SOCKET_DISABLED" ] |
221 | 221 |
(...skipping 10 matching lines...) Expand all 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 |