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

Side by Side Diff: runtime/vm/debuginfo_android.cc

Issue 10826233: Add _android files for building DartVM on Android (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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.
siva 2012/08/10 00:13:47 do you need the files gdbjit_android.h, gdbjit_and
4 4
5 #include "vm/debuginfo.h" 5 #include "vm/debuginfo.h"
6 6
7 #include "platform/utils.h" 7 #include "platform/utils.h"
8 #include "vm/gdbjit_linux.h" 8 #include "vm/gdbjit_android.h"
9 #include "vm/os.h" 9 #include "vm/os.h"
10 #include "vm/thread.h" 10 #include "vm/thread.h"
11 11
12 namespace dart { 12 namespace dart {
13 13
14 // ----------------------------------------------------------------------------- 14 // -----------------------------------------------------------------------------
15 // Implementation of ElfGen 15 // Implementation of ElfGen
16 // 16 //
17 // Specification documents: 17 // Specification documents:
18 // http://refspecs.freestandards.org 18 // http://refspecs.freestandards.org
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 delete dynamic_region; 550 delete dynamic_region;
551 delete elf_section; 551 delete elf_section;
552 } 552 }
553 553
554 554
555 void DebugInfo::UnregisterAllSections() { 555 void DebugInfo::UnregisterAllSections() {
556 ::deleteDynamicSections(); 556 ::deleteDynamicSections();
557 } 557 }
558 558
559 } // namespace dart 559 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698