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

Side by Side Diff: src/flag-definitions.h

Issue 1310273009: Remove all gyp BUILD rules with multiple outputs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « BUILD.gn ('k') | src/snapshot/mksnapshot.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 // This file defines all of the flags. It is separated into different section, 5 // This file defines all of the flags. It is separated into different section,
6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
8 // 8 //
9 // This include does not have a guard, because it is a template-style include, 9 // This include does not have a guard, because it is a template-style include,
10 // which can be included multiple times in different modes. It expects to have 10 // which can be included multiple times in different modes. It expects to have
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 DEFINE_INT(testing_prng_seed, 42, "Seed used for threading test randomness") 800 DEFINE_INT(testing_prng_seed, 42, "Seed used for threading test randomness")
801 #ifdef _WIN32 801 #ifdef _WIN32
802 DEFINE_STRING(testing_serialization_file, "C:\\Windows\\Temp\\serdes", 802 DEFINE_STRING(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
803 "file in which to testing_serialize heap") 803 "file in which to testing_serialize heap")
804 #else 804 #else
805 DEFINE_STRING(testing_serialization_file, "/tmp/serdes", 805 DEFINE_STRING(testing_serialization_file, "/tmp/serdes",
806 "file in which to serialize heap") 806 "file in which to serialize heap")
807 #endif 807 #endif
808 808
809 // mksnapshot.cc 809 // mksnapshot.cc
810 DEFINE_STRING(startup_src, NULL,
811 "Write V8 startup as C++ src. (mksnapshot only)")
810 DEFINE_STRING(startup_blob, NULL, 812 DEFINE_STRING(startup_blob, NULL,
811 "Write V8 startup blob file. (mksnapshot only)") 813 "Write V8 startup blob file. (mksnapshot only)")
812 814
813 // code-stubs-hydrogen.cc 815 // code-stubs-hydrogen.cc
814 DEFINE_BOOL(profile_hydrogen_code_stub_compilation, false, 816 DEFINE_BOOL(profile_hydrogen_code_stub_compilation, false,
815 "Print the time it takes to lazily compile hydrogen code stubs.") 817 "Print the time it takes to lazily compile hydrogen code stubs.")
816 818
817 DEFINE_BOOL(predictable, false, "enable predictable mode") 819 DEFINE_BOOL(predictable, false, "enable predictable mode")
818 DEFINE_NEG_IMPLICATION(predictable, concurrent_recompilation) 820 DEFINE_NEG_IMPLICATION(predictable, concurrent_recompilation)
819 DEFINE_NEG_IMPLICATION(predictable, concurrent_osr) 821 DEFINE_NEG_IMPLICATION(predictable, concurrent_osr)
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 #undef DEFINE_ALIAS_FLOAT 1109 #undef DEFINE_ALIAS_FLOAT
1108 #undef DEFINE_ALIAS_ARGS 1110 #undef DEFINE_ALIAS_ARGS
1109 1111
1110 #undef FLAG_MODE_DECLARE 1112 #undef FLAG_MODE_DECLARE
1111 #undef FLAG_MODE_DEFINE 1113 #undef FLAG_MODE_DEFINE
1112 #undef FLAG_MODE_DEFINE_DEFAULTS 1114 #undef FLAG_MODE_DEFINE_DEFAULTS
1113 #undef FLAG_MODE_META 1115 #undef FLAG_MODE_META
1114 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1116 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1115 1117
1116 #undef COMMA 1118 #undef COMMA
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/snapshot/mksnapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698