| OLD | NEW |
| (Empty) | |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 # This file contains some C++ sources for the dart:io library. The other |
| 6 # implementation files are in builtin_impl_sources.gypi. |
| 7 { |
| 8 'sources': [ |
| 9 'eventhandler.cc', |
| 10 'eventhandler.h', |
| 11 'eventhandler_android.cc', |
| 12 'eventhandler_linux.cc', |
| 13 'eventhandler_linux.h', |
| 14 'eventhandler_macos.cc', |
| 15 'eventhandler_macos.h', |
| 16 'eventhandler_win.cc', |
| 17 'eventhandler_win.h', |
| 18 'process.cc', |
| 19 'process.h', |
| 20 'process_android.cc', |
| 21 'process_linux.cc', |
| 22 'process_macos.cc', |
| 23 'process_win.cc', |
| 24 'socket.cc', |
| 25 'socket.h', |
| 26 'socket_android.cc', |
| 27 'socket_linux.cc', |
| 28 'socket_macos.cc', |
| 29 'socket_win.cc', |
| 30 ], |
| 31 } |
| OLD | NEW |