OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'conditions': [ | 6 'conditions': [ |
7 ['OS=="android"', { | 7 ['OS=="android"', { |
8 # TODO(mef): Figure out what needs to be done for gn script. | 8 # TODO(mef): Figure out what needs to be done for gn script. |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 }, | 154 }, |
155 { | 155 { |
156 # cronet_static_small target has reduced binary size through using | 156 # cronet_static_small target has reduced binary size through using |
157 # ICU alternatives which requires file and ftp support be disabled. | 157 # ICU alternatives which requires file and ftp support be disabled. |
158 'target_name': 'cronet_static_small', | 158 'target_name': 'cronet_static_small', |
159 'type': 'static_library', | 159 'type': 'static_library', |
160 'defines': [ | 160 'defines': [ |
161 'USE_ICU_ALTERNATIVES_ON_ANDROID=1', | 161 'USE_ICU_ALTERNATIVES_ON_ANDROID=1', |
162 'DISABLE_FILE_SUPPORT=1', | 162 'DISABLE_FILE_SUPPORT=1', |
163 'DISABLE_FTP_SUPPORT=1', | 163 'DISABLE_FTP_SUPPORT=1', |
| 164 'DISABLE_BROTLI_SUPPORT=1', |
164 ], | 165 ], |
165 'dependencies': [ | 166 'dependencies': [ |
166 '../net/net.gyp:net_small', | 167 '../net/net.gyp:net_small', |
167 '../url/url.gyp:url_lib_use_icu_alternatives_on_android', | 168 '../url/url.gyp:url_lib_use_icu_alternatives_on_android', |
168 ], | 169 ], |
169 'conditions': [ | 170 'conditions': [ |
170 ['enable_data_reduction_proxy_support==1', | 171 ['enable_data_reduction_proxy_support==1', |
171 { | 172 { |
172 'dependencies': [ | 173 'dependencies': [ |
173 '../components/components.gyp:data_reduction_proxy_core_browse
r_small', | 174 '../components/components.gyp:data_reduction_proxy_core_browse
r_small', |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 }, | 626 }, |
626 ], | 627 ], |
627 }, | 628 }, |
628 ], | 629 ], |
629 'variables': { | 630 'variables': { |
630 'enable_data_reduction_proxy_support%': 0, | 631 'enable_data_reduction_proxy_support%': 0, |
631 }, | 632 }, |
632 }], # OS=="android" | 633 }], # OS=="android" |
633 ], | 634 ], |
634 } | 635 } |
OLD | NEW |