diff options
author | mnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 07:58:51 +0000 |
---|---|---|
committer | mnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 07:58:51 +0000 |
commit | bd3bd44953d12d7480f39af550c8259dfab7128a (patch) | |
tree | 96115926a6ce32f1e18d4d23fbe767cbb6f6e33e /build | |
parent | d99231b15054269fba1907dc8ce68208e6ad9751 (diff) | |
download | chromium_src-bd3bd44953d12d7480f39af550c8259dfab7128a.zip chromium_src-bd3bd44953d12d7480f39af550c8259dfab7128a.tar.gz chromium_src-bd3bd44953d12d7480f39af550c8259dfab7128a.tar.bz2 |
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
TBR=pfeldman@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79528 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index 955ff11..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', |