| Index: components/cronet/tools/cr_cronet.py
|
| diff --git a/components/cronet/tools/cr_cronet.py b/components/cronet/tools/cr_cronet.py
|
| index 8023bc3df913fc37001581ff87f1207a92f007b7..c0baba4552851f4ad3174b9f36e141c957352f48 100755
|
| --- a/components/cronet/tools/cr_cronet.py
|
| +++ b/components/cronet/tools/cr_cronet.py
|
| @@ -71,10 +71,12 @@ def main():
|
| print extra_options_list
|
| gyp_defines = 'GYP_DEFINES="OS=android enable_websockets=0 '+ \
|
| 'disable_file_support=1 disable_ftp_support=1 '+ \
|
| - 'enable_errorprone=1"'
|
| + 'enable_errorprone=1 use_platform_icu_alternatives=1 ' + \
|
| + 'disable_brotli_filter=1"'
|
| gn_args = 'target_os="android" enable_websockets=false '+ \
|
| 'disable_file_support=true disable_ftp_support=true '+ \
|
| - 'use_errorprone_java_compiler=true'
|
| + 'use_errorprone_java_compiler=true use_platform_icu_alternatives=true '+ \
|
| + 'disable_brotli_filter=true'
|
| out_dir = 'out/Debug'
|
| release_arg = ''
|
| extra_options = ' '.join(extra_options_list)
|
|
|