Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: runtime/bin/builtin_impl_sources.gypi

Issue 10823209: Add support for building the Dart VM for Android OS. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Directory::CreateTemp("") to work on Android. Also fix platform_test.dart to know about Android… Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 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 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 # This file contains all C++ sources for the dart:builtin and dart:io 5 # This file contains all C++ sources for the dart:builtin and dart:io
6 # libraries. 6 # libraries.
7 { 7 {
8 'sources': [ 8 'sources': [
9 'dartutils.cc', 9 'dartutils.cc',
10 'dartutils.h', 10 'dartutils.h',
11 'dbg_connection.cc', 11 'dbg_connection.cc',
12 'dbg_connection.h', 12 'dbg_connection.h',
13 'dbg_connection_android.cc',
13 'dbg_connection_linux.cc', 14 'dbg_connection_linux.cc',
14 'dbg_connection_linux.h', 15 'dbg_connection_linux.h',
15 'dbg_connection_macos.cc', 16 'dbg_connection_macos.cc',
16 'dbg_connection_macos.h', 17 'dbg_connection_macos.h',
17 'dbg_connection_win.cc', 18 'dbg_connection_win.cc',
18 'dbg_connection_win.h', 19 'dbg_connection_win.h',
19 'directory.cc', 20 'directory.cc',
20 'directory.h', 21 'directory.h',
21 'directory_posix.cc', 22 'directory_android.cc',
23 'directory_linux.cc',
24 'directory_macos.cc',
22 'directory_win.cc', 25 'directory_win.cc',
23 'eventhandler.cc', 26 'eventhandler.cc',
24 'eventhandler.h', 27 'eventhandler.h',
28 'eventhandler_android.cc',
25 'eventhandler_linux.cc', 29 'eventhandler_linux.cc',
26 'eventhandler_linux.h', 30 'eventhandler_linux.h',
27 'eventhandler_macos.cc', 31 'eventhandler_macos.cc',
28 'eventhandler_macos.h', 32 'eventhandler_macos.h',
29 'eventhandler_win.cc', 33 'eventhandler_win.cc',
30 'eventhandler_win.h', 34 'eventhandler_win.h',
31 'extensions.h', 35 'extensions.h',
32 'extensions.cc', 36 'extensions.cc',
37 'extensions_android.cc',
33 'extensions_linux.cc', 38 'extensions_linux.cc',
34 'extensions_macos.cc', 39 'extensions_macos.cc',
35 'extensions_win.cc', 40 'extensions_win.cc',
36 'file.cc', 41 'file.cc',
37 'file.h', 42 'file.h',
43 'file_android.cc',
38 'file_linux.cc', 44 'file_linux.cc',
39 'file_macos.cc', 45 'file_macos.cc',
40 'file_win.cc', 46 'file_win.cc',
41 'file_test.cc', 47 'file_test.cc',
42 'fdutils.h', 48 'fdutils.h',
49 'fdutils_android.cc',
43 'fdutils_linux.cc', 50 'fdutils_linux.cc',
44 'fdutils_macos.cc', 51 'fdutils_macos.cc',
45 'hashmap_test.cc', 52 'hashmap_test.cc',
46 'isolate_data.h', 53 'isolate_data.h',
47 'platform.cc', 54 'platform.cc',
48 'platform.h', 55 'platform.h',
56 'platform_android.cc',
49 'platform_linux.cc', 57 'platform_linux.cc',
50 'platform_macos.cc', 58 'platform_macos.cc',
51 'platform_win.cc', 59 'platform_win.cc',
52 'process.cc', 60 'process.cc',
53 'process.h', 61 'process.h',
62 'process_android.cc',
54 'process_linux.cc', 63 'process_linux.cc',
55 'process_macos.cc', 64 'process_macos.cc',
56 'process_win.cc', 65 'process_win.cc',
57 'socket.cc', 66 'socket.cc',
58 'socket.h', 67 'socket.h',
68 'socket_android.cc',
59 'socket_linux.cc', 69 'socket_linux.cc',
60 'socket_macos.cc', 70 'socket_macos.cc',
61 'socket_win.cc', 71 'socket_win.cc',
62 'set.h', 72 'set.h',
63 'set_test.cc', 73 'set_test.cc',
64 'thread.h', 74 'thread.h',
65 'utils.h', 75 'utils.h',
76 'utils_android.cc',
66 'utils_linux.cc', 77 'utils_linux.cc',
67 'utils_macos.cc', 78 'utils_macos.cc',
68 'utils_win.cc', 79 'utils_win.cc',
69 ], 80 ],
70 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698