| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 2b24d13cf3e3bc38403f72dce03e5b1d78904c73..6e73258f78946f9044672f08160f437d612e6a57 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -355,6 +355,16 @@ DEFINE_string(map_counters, NULL, "Map counters to a file")
|
| DEFINE_args(js_arguments, JSArguments(),
|
| "Pass all remaining arguments to the script. Alias for \"--\".")
|
|
|
| +#if defined(WEBOS__)
|
| +DEFINE_bool(debug_compile_events, false, "Enable debugger compile events")
|
| +DEFINE_bool(debug_script_collected_events, false,
|
| + "Enable debugger script collected events")
|
| +#else
|
| +DEFINE_bool(debug_compile_events, true, "Enable debugger compile events")
|
| +DEFINE_bool(debug_script_collected_events, true,
|
| + "Enable debugger script collected events")
|
| +#endif
|
| +
|
| //
|
| // Debug only flags
|
| //
|
|
|