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

Side by Side Diff: src/vm/vm.gyp

Issue 2006403003: [mips] Initial framework support for MIPS32 (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Minor update. Created 4 years, 7 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
OLDNEW
1 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file 1 # Copyright (c) 2015, the Dartino 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.md file. 3 # BSD-style license that can be found in the LICENSE.md file.
4 4
5 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'include_dirs': [ 7 'include_dirs': [
8 '../../', 8 '../../',
9 ], 9 ],
10 }, 10 },
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 'sources': [ 292 'sources': [
293 'assembler_arm64_linux.cc', 293 'assembler_arm64_linux.cc',
294 'assembler_arm64_macos.cc', 294 'assembler_arm64_macos.cc',
295 'assembler_arm.cc', 295 'assembler_arm.cc',
296 'assembler_arm.h', 296 'assembler_arm.h',
297 'assembler_arm_thumb_linux.cc', 297 'assembler_arm_thumb_linux.cc',
298 'assembler_arm_linux.cc', 298 'assembler_arm_linux.cc',
299 'assembler_arm_thumb_macos.cc', 299 'assembler_arm_thumb_macos.cc',
300 'assembler_arm_macos.cc', 300 'assembler_arm_macos.cc',
301 'assembler.h', 301 'assembler.h',
302 'assembler_mips.h',
Søren Gjesse 2016/05/26 13:00:19 Please add these files to rules.mk in the project
petarj 2016/05/26 14:35:55 Done.
303 'assembler_mips.cc',
304 'assembler_mips_linux.cc',
302 'assembler_x64.cc', 305 'assembler_x64.cc',
303 'assembler_x64.h', 306 'assembler_x64.h',
304 'assembler_x64_linux.cc', 307 'assembler_x64_linux.cc',
305 'assembler_x64_macos.cc', 308 'assembler_x64_macos.cc',
306 'assembler_x86.cc', 309 'assembler_x86.cc',
307 'assembler_x86.h', 310 'assembler_x86.h',
308 'assembler_x86_linux.cc', 311 'assembler_x86_linux.cc',
309 'assembler_x86_macos.cc', 312 'assembler_x86_macos.cc',
310 'assembler_x86_win.cc', 313 'assembler_x86_win.cc',
311 'generator.h', 314 'generator.h',
312 'generator.cc', 315 'generator.cc',
313 'interpreter_arm.cc', 316 'interpreter_arm.cc',
314 'interpreter_x86.cc', 317 'interpreter_x86.cc',
315 'interpreter_x64.cc', 318 'interpreter_x64.cc',
319 'interpreter_mips.cc',
316 ], 320 ],
317 }, 321 },
318 { 322 {
319 'target_name': 'dartino-vm', 323 'target_name': 'dartino-vm',
320 'type': 'executable', 324 'type': 'executable',
321 'dependencies': [ 325 'dependencies': [
322 'libdartino', 326 'libdartino',
323 ], 327 ],
324 'sources': [ 328 'sources': [
325 'main.cc', 329 'main.cc',
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 'sources': [ 420 'sources': [
417 'dartino_relocation_api_impl.cc', 421 'dartino_relocation_api_impl.cc',
418 'dartino_relocation_api_impl.h', 422 'dartino_relocation_api_impl.h',
419 'program_info_block.h', # only to detect interface changes 423 'program_info_block.h', # only to detect interface changes
420 'program_relocator.cc', 424 'program_relocator.cc',
421 'program_relocator.h', 425 'program_relocator.h',
422 ], 426 ],
423 }, 427 },
424 ], 428 ],
425 } 429 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698