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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 configs += ["..:dart_config",] | 232 configs += ["..:dart_config",] |
233 | 233 |
234 # Set custom sources assignment filter. The custom filters does three things: | 234 # Set custom sources assignment filter. The custom filters does three things: |
235 # 1) Filters out unnecessary files pulled in from the gypi files. | 235 # 1) Filters out unnecessary files pulled in from the gypi files. |
236 # 2) Filters out secure socket support. | 236 # 2) Filters out secure socket support. |
237 # 3) Enables dart:io by filtering out _unsupported.cc implementations. | 237 # 3) Enables dart:io by filtering out _unsupported.cc implementations. |
238 custom_sources_filter = [ | 238 custom_sources_filter = [ |
239 "*net/nss_memio.cc", | 239 "*net/nss_memio.cc", |
240 "*net/nss_memio.h", | 240 "*net/nss_memio.h", |
241 "*root_certificates.cc", | 241 "*root_certificates.cc", |
242 "*secure_socket.cc", | 242 "*secure_socket_boringssl.cc", |
| 243 "*secure_socket_boringssl.h", |
| 244 "*secure_socket_macos.cc", |
| 245 "*secure_socket_macos.h", |
243 "*secure_socket.h", | 246 "*secure_socket.h", |
244 "filter.cc", | 247 "filter.cc", |
245 "*io_service_unsupported.cc", | 248 "*io_service_unsupported.cc", |
246 "platform_*.cc", | 249 "platform_*.cc", |
247 "*io_service.cc", | 250 "*io_service.cc", |
248 "*io_service.h", | 251 "*io_service.h", |
249 "*_test.cc", | 252 "*_test.cc", |
250 "*_test.h", | 253 "*_test.h", |
251 "*dbg*", | 254 "*dbg*", |
252 "builtin.cc", | 255 "builtin.cc", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 configs += ["..:dart_config",] | 290 configs += ["..:dart_config",] |
288 | 291 |
289 # Set custom sources assignment filter. The custom filters does three things: | 292 # Set custom sources assignment filter. The custom filters does three things: |
290 # 1) Filters out unnecessary files pulled in from the gypi files. | 293 # 1) Filters out unnecessary files pulled in from the gypi files. |
291 # 2) Filters out secure socket support. | 294 # 2) Filters out secure socket support. |
292 # 3) Enables dart:io by filtering out _unsupported.cc implementations. | 295 # 3) Enables dart:io by filtering out _unsupported.cc implementations. |
293 custom_sources_filter = [ | 296 custom_sources_filter = [ |
294 "*net/nss_memio.cc", | 297 "*net/nss_memio.cc", |
295 "*net/nss_memio.h", | 298 "*net/nss_memio.h", |
296 "*root_certificates.cc", | 299 "*root_certificates.cc", |
297 "*secure_socket.cc", | 300 "*secure_socket_boringssl.cc", |
| 301 "*secure_socket_boringssl.h", |
| 302 "*secure_socket_macos.cc", |
| 303 "*secure_socket_macos.h", |
298 "*secure_socket.h", | 304 "*secure_socket.h", |
299 "*filter_unsupported.cc", | 305 "*filter_unsupported.cc", |
300 "*io_service_unsupported.cc", | 306 "*io_service_unsupported.cc", |
301 "*io_service.cc", | 307 "*io_service.cc", |
302 "*io_service.h", | 308 "*io_service.h", |
303 "*_test.cc", | 309 "*_test.cc", |
304 "*_test.h", | 310 "*_test.h", |
305 "*dbg*", | 311 "*dbg*", |
306 "builtin.cc", | 312 "builtin.cc", |
307 "builtin_gen_snapshot.cc", | 313 "builtin_gen_snapshot.cc", |
(...skipping 22 matching lines...) Expand all Loading... |
330 "log_macos.cc", | 336 "log_macos.cc", |
331 "log_win.cc", | 337 "log_win.cc", |
332 "log.h", | 338 "log.h", |
333 ] | 339 ] |
334 | 340 |
335 include_dirs = [ | 341 include_dirs = [ |
336 "..", | 342 "..", |
337 "//third_party" | 343 "//third_party" |
338 ] | 344 ] |
339 } | 345 } |
OLD | NEW |