| Index: runtime/bin/io_impl_sources.gypi
|
| diff --git a/runtime/bin/io_impl_sources.gypi b/runtime/bin/io_impl_sources.gypi
|
| index 0eeaf5dcc50f7974e2ea1be5ba0bc23997b12f34..9565456640a75bb2e07e66076f7e7b98428a1693 100644
|
| --- a/runtime/bin/io_impl_sources.gypi
|
| +++ b/runtime/bin/io_impl_sources.gypi
|
| @@ -23,6 +23,7 @@
|
| 'eventhandler_win.h',
|
| 'filter.cc',
|
| 'filter.h',
|
| + 'filter_unsupported.cc',
|
| 'net/nss_memio.cc',
|
| 'net/nss_memio.h',
|
| 'platform.cc',
|
| @@ -45,5 +46,23 @@
|
| 'socket_win.cc',
|
| 'secure_socket.cc',
|
| 'secure_socket.h',
|
| + 'secure_socket_unsupported.cc',
|
| + ],
|
| + 'conditions': [
|
| + ['dart_io_support==1', {
|
| + 'sources!' : [
|
| + 'filter_unsupported.cc',
|
| + 'secure_socket_unsupported.cc',
|
| + ],
|
| + },{ # else dart_io_support == 0
|
| + 'sources!' : [
|
| + 'filter.cc',
|
| + 'filter.h',
|
| + 'net/nss_memio.cc',
|
| + 'net/nss_memio.h',
|
| + 'secure_socket.cc',
|
| + 'secure_socket.h',
|
| + ],
|
| + }],
|
| ],
|
| }
|
|
|