DevTools: if 'debug_devtools' is defined in .gyp, always try loading from disk, take 2.
Missing variable definition added.
We have found that being forced to pass '--debug-devtools' isn't
convenient for DevTools developers, and decided to always load DevTools
files from disk, if Chromium was compiled with 'debug_devtools' flag set
in .gyp
BUG=none
TEST=none
[email protected]
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79528 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/build/common.gypi b/build/common.gypi
index 955ff112..644c9ed 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -385,6 +385,12 @@
# Under development: http://crbug.com/68551
'use_harfbuzz_ng%': 0,
+ # If debug_devtools is set to 1, JavaScript files for DevTools are
+ # stored as is and loaded from disk. Otherwise, a concatenated file
+ # is stored in resources.pak. It is still possible to load JS files
+ # from disk by passing --debug-devtools cmdline switch.
+ 'debug_devtools%': 0,
+
# Point to ICU directory.
'icu_src_dir': '../third_party/icu',