| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 # 1) Filters out unnecessary files pulled in from the gypi files. | 198 # 1) Filters out unnecessary files pulled in from the gypi files. |
| 199 # 2) Filters out secure socket support. | 199 # 2) Filters out secure socket support. |
| 200 # 3) Enables dart:io by filtering out _unsupported.cc implementations. | 200 # 3) Enables dart:io by filtering out _unsupported.cc implementations. |
| 201 custom_sources_filter = [ | 201 custom_sources_filter = [ |
| 202 "*net/nss_memio.cc", | 202 "*net/nss_memio.cc", |
| 203 "*net/nss_memio.h", | 203 "*net/nss_memio.h", |
| 204 "*secure_socket.cc", | 204 "*secure_socket.cc", |
| 205 "*secure_socket.h", | 205 "*secure_socket.h", |
| 206 "*filter_unsupported.cc", | 206 "*filter_unsupported.cc", |
| 207 "*io_service_unsupported.cc", | 207 "*io_service_unsupported.cc", |
| 208 "*io_service.cc", |
| 209 "*io_service.h", |
| 208 "*_test.cc", | 210 "*_test.cc", |
| 209 "*_test.h", | 211 "*_test.h", |
| 210 "*dbg*", | 212 "*dbg*", |
| 211 "builtin.cc", | 213 "builtin.cc", |
| 212 "builtin_gen_snapshot.cc", | 214 "builtin_gen_snapshot.cc", |
| 213 ] | 215 ] |
| 214 if (!is_mac && !is_ios) { | 216 if (!is_mac && !is_ios) { |
| 215 # Dart tree uses *_macos.* instead of *_mac.* | 217 # Dart tree uses *_macos.* instead of *_mac.* |
| 216 custom_sources_filter += [ | 218 custom_sources_filter += [ |
| 217 "*_macos.h", | 219 "*_macos.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 235 "log_macos.cc", | 237 "log_macos.cc", |
| 236 "log_win.cc", | 238 "log_win.cc", |
| 237 "log.h", | 239 "log.h", |
| 238 ] | 240 ] |
| 239 | 241 |
| 240 include_dirs = [ | 242 include_dirs = [ |
| 241 "..", | 243 "..", |
| 242 "//third_party" | 244 "//third_party" |
| 243 ] | 245 ] |
| 244 } | 246 } |
| OLD | NEW |