Chromium Code Reviews| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 150 }, | 150 }, |
| 151 { | 151 { |
| 152 # cronet_static_small target has reduced binary size through using | 152 # cronet_static_small target has reduced binary size through using |
| 153 # ICU alternatives which requires file and ftp support be disabled. | 153 # ICU alternatives which requires file and ftp support be disabled. |
| 154 'target_name': 'cronet_static_small', | 154 'target_name': 'cronet_static_small', |
| 155 'type': 'static_library', | 155 'type': 'static_library', |
| 156 'defines': [ | 156 'defines': [ |
| 157 'USE_ICU_ALTERNATIVES_ON_ANDROID=1', | 157 'USE_ICU_ALTERNATIVES_ON_ANDROID=1', |
| 158 'DISABLE_FILE_SUPPORT=1', | 158 'DISABLE_FILE_SUPPORT=1', |
| 159 'DISABLE_FTP_SUPPORT=1', | 159 'DISABLE_FTP_SUPPORT=1', |
| 160 'DISABLE_BROTLI_SUPPORT=1', | |
|
Ryan Sleevi
2015/12/17 01:04:40
Why is this done just for this target?
eustas
2015/12/17 16:44:54
Probably I have missed something...
What other tar
| |
| 160 ], | 161 ], |
| 161 'dependencies': [ | 162 'dependencies': [ |
| 162 '../net/net.gyp:net_small', | 163 '../net/net.gyp:net_small', |
| 163 '../url/url.gyp:url_lib_use_icu_alternatives_on_android', | 164 '../url/url.gyp:url_lib_use_icu_alternatives_on_android', |
| 164 ], | 165 ], |
| 165 'conditions': [ | 166 'conditions': [ |
| 166 ['enable_data_reduction_proxy_support==1', | 167 ['enable_data_reduction_proxy_support==1', |
| 167 { | 168 { |
| 168 'dependencies': [ | 169 'dependencies': [ |
| 169 '../components/components.gyp:data_reduction_proxy_core_browse r_small', | 170 '../components/components.gyp:data_reduction_proxy_core_browse r_small', |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 624 }, | 625 }, |
| 625 ], | 626 ], |
| 626 }, | 627 }, |
| 627 ], | 628 ], |
| 628 'variables': { | 629 'variables': { |
| 629 'enable_data_reduction_proxy_support%': 0, | 630 'enable_data_reduction_proxy_support%': 0, |
| 630 }, | 631 }, |
| 631 }], # OS=="android" | 632 }], # OS=="android" |
| 632 ], | 633 ], |
| 633 } | 634 } |
| OLD | NEW |