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

Side by Side Diff: runtime/vm/globals.h

Issue 9124030: Cleanup gypi mess. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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) 2011, the Dart project authors. Please see the AUTHORS file
Ivan Posva 2012/01/10 00:28:09 Time travel.
Mads Ager (google) 2012/01/10 06:55:05 Done.
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 #ifndef VM_GLOBALS_H_ 5 #ifndef VM_GLOBALS_H_
6 #define VM_GLOBALS_H_ 6 #define VM_GLOBALS_H_
7 7
8 // This file contains global definitions for the VM library only. Anything that 8 // This file contains global definitions for the VM library only. Anything that
9 // is more globally useful should be added to 'vm/globals.h'. 9 // is more globally useful should be added to 'vm/globals.h'.
10 10
11 #include "platform/globals.h" 11 #include "platform/globals.h"
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 // contants are 16 byte aligned. 274 // contants are 16 byte aligned.
275 #if defined(TARGET_OS_WINDOWS) 275 #if defined(TARGET_OS_WINDOWS)
276 #define ALIGN16 __declspec(align(16)) 276 #define ALIGN16 __declspec(align(16))
277 #else 277 #else
278 #define ALIGN16 __attribute__((aligned(16))) 278 #define ALIGN16 __attribute__((aligned(16)))
279 #endif 279 #endif
280 280
281 } // namespace dart 281 } // namespace dart
282 282
283 #endif // VM_GLOBALS_H_ 283 #endif // VM_GLOBALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698