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

Side by Side Diff: src/flags.cc

Issue 358363002: Move platform abstraction to base library (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 6 years, 5 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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <ctype.h> 5 #include <ctype.h>
6 #include <stdlib.h> 6 #include <stdlib.h>
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/assembler.h" 10 #include "src/assembler.h"
11 #include "src/platform.h" 11 #include "src/base/platform/platform.h"
12 #include "src/smart-pointers.h" 12 #include "src/smart-pointers.h"
13 #include "src/string-stream.h" 13 #include "src/string-stream.h"
14 14
15 namespace v8 { 15 namespace v8 {
16 namespace internal { 16 namespace internal {
17 17
18 // Define all of our flags. 18 // Define all of our flags.
19 #define FLAG_MODE_DEFINE 19 #define FLAG_MODE_DEFINE
20 #include "src/flag-definitions.h" // NOLINT 20 #include "src/flag-definitions.h" // NOLINT
21 21
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 544
545 545
546 // static 546 // static
547 void FlagList::EnforceFlagImplications() { 547 void FlagList::EnforceFlagImplications() {
548 #define FLAG_MODE_DEFINE_IMPLICATIONS 548 #define FLAG_MODE_DEFINE_IMPLICATIONS
549 #include "src/flag-definitions.h" 549 #include "src/flag-definitions.h"
550 #undef FLAG_MODE_DEFINE_IMPLICATIONS 550 #undef FLAG_MODE_DEFINE_IMPLICATIONS
551 } 551 }
552 552
553 } } // namespace v8::internal 553 } } // namespace v8::internal
OLDNEW
« src/base/macros.h ('K') | « src/fixed-dtoa.cc ('k') | src/gdb-jit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698