Chromium Code Reviews| Index: third_party/WebKit/Source/build/scripts/make_css_value_keywords.py |
| diff --git a/third_party/WebKit/Source/build/scripts/make_css_value_keywords.py b/third_party/WebKit/Source/build/scripts/make_css_value_keywords.py |
| index f8b773c8971473ec04c5c7c3786fda5aec68e8ec..608ffd5e97f02bfc1003fb534243b8aa07f30950 100755 |
| --- a/third_party/WebKit/Source/build/scripts/make_css_value_keywords.py |
| +++ b/third_party/WebKit/Source/build/scripts/make_css_value_keywords.py |
| @@ -174,6 +174,7 @@ class CSSValueKeywordsWriter(json5_generator.Writer): |
| gperf_args = [self.gperf_path, '--key-positions=*', '-P', '-n'] |
| gperf_args.extend(['-m', '50']) # Pick best of 50 attempts. |
| gperf_args.append('-D') # Allow duplicate hashes -> More compact code. |
| + gperf_args.extend(['-Q', 'ValueStringPool']) # Unique var names. |
|
fs
2017/07/07 12:58:30
Maybe CSSValueStringPool?
Daniel Bratell
2017/07/07 13:20:50
Done.
|
| # If gperf isn't in the path we get an OSError. We don't want to use |
| # the normal solution of shell=True (as this has to run on many |