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

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

Issue 256653004: Always include debugger support. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Makefile Created 6 years, 8 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
« no previous file with comments | « src/factory.cc ('k') | src/full-codegen.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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 DEFINE_neg_implication(predictable, parallel_sweeping) 672 DEFINE_neg_implication(predictable, parallel_sweeping)
673 673
674 674
675 // 675 //
676 // Dev shell flags 676 // Dev shell flags
677 // 677 //
678 678
679 DEFINE_bool(help, false, "Print usage message, including flags, on console") 679 DEFINE_bool(help, false, "Print usage message, including flags, on console")
680 DEFINE_bool(dump_counters, false, "Dump counters on exit") 680 DEFINE_bool(dump_counters, false, "Dump counters on exit")
681 681
682 #ifdef ENABLE_DEBUGGER_SUPPORT
683 DEFINE_bool(debugger, false, "Enable JavaScript debugger") 682 DEFINE_bool(debugger, false, "Enable JavaScript debugger")
684 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the " 683 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the "
685 "debugger agent in another process") 684 "debugger agent in another process")
686 DEFINE_bool(debugger_agent, false, "Enable debugger agent") 685 DEFINE_bool(debugger_agent, false, "Enable debugger agent")
687 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging") 686 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging")
688 #endif // ENABLE_DEBUGGER_SUPPORT
689 687
690 DEFINE_string(map_counters, "", "Map counters to a file") 688 DEFINE_string(map_counters, "", "Map counters to a file")
691 DEFINE_args(js_arguments, 689 DEFINE_args(js_arguments,
692 "Pass all remaining arguments to the script. Alias for \"--\".") 690 "Pass all remaining arguments to the script. Alias for \"--\".")
693 691
694 #if defined(WEBOS__) 692 #if defined(WEBOS__)
695 DEFINE_bool(debug_compile_events, false, "Enable debugger compile events") 693 DEFINE_bool(debug_compile_events, false, "Enable debugger compile events")
696 DEFINE_bool(debug_script_collected_events, false, 694 DEFINE_bool(debug_script_collected_events, false,
697 "Enable debugger script collected events") 695 "Enable debugger script collected events")
698 #else 696 #else
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 #undef DEFINE_ALIAS_float 929 #undef DEFINE_ALIAS_float
932 #undef DEFINE_ALIAS_args 930 #undef DEFINE_ALIAS_args
933 931
934 #undef FLAG_MODE_DECLARE 932 #undef FLAG_MODE_DECLARE
935 #undef FLAG_MODE_DEFINE 933 #undef FLAG_MODE_DEFINE
936 #undef FLAG_MODE_DEFINE_DEFAULTS 934 #undef FLAG_MODE_DEFINE_DEFAULTS
937 #undef FLAG_MODE_META 935 #undef FLAG_MODE_META
938 #undef FLAG_MODE_DEFINE_IMPLICATIONS 936 #undef FLAG_MODE_DEFINE_IMPLICATIONS
939 937
940 #undef COMMA 938 #undef COMMA
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698