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

Side by Side Diff: runtime/vm/vm_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: Incorporate review feedback from cshapiro 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 sources (vm and tests) for the dart virtual machine. 5 # This file contains all sources (vm and tests) for the dart virtual machine.
6 # Unit test files need to have a '_test' suffix appended to the name. 6 # Unit test files need to have a '_test' suffix appended to the name.
7 { 7 {
8 'sources': [ 8 'sources': [
9 'allocation.cc', 9 'allocation.cc',
10 'allocation.h', 10 'allocation.h',
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 'debugger_api_impl_test.cc', 99 'debugger_api_impl_test.cc',
100 'deopt_instructions.cc', 100 'deopt_instructions.cc',
101 'deopt_instructions.h', 101 'deopt_instructions.h',
102 'disassembler.cc', 102 'disassembler.cc',
103 'disassembler.h', 103 'disassembler.h',
104 'disassembler_ia32.cc', 104 'disassembler_ia32.cc',
105 'disassembler_x64.cc', 105 'disassembler_x64.cc',
106 'disassembler_arm.cc', 106 'disassembler_arm.cc',
107 'disassembler_test.cc', 107 'disassembler_test.cc',
108 'debuginfo.h', 108 'debuginfo.h',
109 'debuginfo_android.cc',
109 'debuginfo_linux.cc', 110 'debuginfo_linux.cc',
110 'debuginfo_macos.cc', 111 'debuginfo_macos.cc',
111 'debuginfo_win.cc', 112 'debuginfo_win.cc',
112 'double_conversion.cc', 113 'double_conversion.cc',
113 'double_conversion.h', 114 'double_conversion.h',
114 'exceptions.cc', 115 'exceptions.cc',
115 'exceptions.h', 116 'exceptions.h',
116 'exceptions_test.cc', 117 'exceptions_test.cc',
117 'find_code_object_test.cc', 118 'find_code_object_test.cc',
118 'flags.cc', 119 'flags.cc',
(...skipping 13 matching lines...) Expand all
132 'flow_graph_compiler_x64.h', 133 'flow_graph_compiler_x64.h',
133 'flow_graph_optimizer.cc', 134 'flow_graph_optimizer.cc',
134 'flow_graph_optimizer.h', 135 'flow_graph_optimizer.h',
135 'freelist.cc', 136 'freelist.cc',
136 'freelist.h', 137 'freelist.h',
137 'freelist_test.cc', 138 'freelist_test.cc',
138 'gc_marker.cc', 139 'gc_marker.cc',
139 'gc_marker.h', 140 'gc_marker.h',
140 'gc_sweeper.cc', 141 'gc_sweeper.cc',
141 'gc_sweeper.h', 142 'gc_sweeper.h',
143 'gdbjit_android.cc',
144 'gdbjit_android.h',
142 'gdbjit_linux.cc', 145 'gdbjit_linux.cc',
143 'gdbjit_linux.h', 146 'gdbjit_linux.h',
144 'globals.h', 147 'globals.h',
145 'growable_array.h', 148 'growable_array.h',
146 'growable_array_test.cc', 149 'growable_array_test.cc',
147 'handles.cc', 150 'handles.cc',
148 'handles.h', 151 'handles.h',
149 'handles_impl.h', 152 'handles_impl.h',
150 'handles_test.cc', 153 'handles_test.cc',
151 'hash_set.h', 154 'hash_set.h',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'native_message_handler.h', 205 'native_message_handler.h',
203 'object.cc', 206 'object.cc',
204 'object.h', 207 'object.h',
205 'object_test.cc', 208 'object_test.cc',
206 'object_arm_test.cc', 209 'object_arm_test.cc',
207 'object_ia32_test.cc', 210 'object_ia32_test.cc',
208 'object_x64_test.cc', 211 'object_x64_test.cc',
209 'object_store.cc', 212 'object_store.cc',
210 'object_store.h', 213 'object_store.h',
211 'object_store_test.cc', 214 'object_store_test.cc',
215 'os_android.cc',
212 'os_linux.cc', 216 'os_linux.cc',
213 'os_macos.cc', 217 'os_macos.cc',
214 'os_win.cc', 218 'os_win.cc',
215 'os.h', 219 'os.h',
216 'os_test.cc', 220 'os_test.cc',
217 'parser.cc', 221 'parser.cc',
218 'parser.h', 222 'parser.h',
219 'parser_test.cc', 223 'parser_test.cc',
220 'pages.cc', 224 'pages.cc',
221 'pages.h', 225 'pages.h',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 'token.h', 280 'token.h',
277 'unicode.cc', 281 'unicode.cc',
278 'unicode.h', 282 'unicode.h',
279 'unicode_data.cc', 283 'unicode_data.cc',
280 'unicode_test.cc', 284 'unicode_test.cc',
281 'unit_test.cc', 285 'unit_test.cc',
282 'unit_test.h', 286 'unit_test.h',
283 'utils_test.cc', 287 'utils_test.cc',
284 'virtual_memory.cc', 288 'virtual_memory.cc',
285 'virtual_memory.h', 289 'virtual_memory.h',
290 'virtual_memory_android.cc',
286 'virtual_memory_linux.cc', 291 'virtual_memory_linux.cc',
287 'virtual_memory_macos.cc', 292 'virtual_memory_macos.cc',
288 'virtual_memory_test.cc', 293 'virtual_memory_test.cc',
289 'virtual_memory_win.cc', 294 'virtual_memory_win.cc',
290 'verifier.cc', 295 'verifier.cc',
291 'verifier.h', 296 'verifier.h',
292 'visitor.h', 297 'visitor.h',
293 'zone.cc', 298 'zone.cc',
294 'zone.h', 299 'zone.h',
295 'zone_test.cc', 300 'zone_test.cc',
296 ], 301 ],
297 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698