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 { | 6 { |
| 7 'variables' : | 7 'variables' : |
| 8 { | 8 { |
| 9 'data_reduction_proxy_core_browser_sources' : [ | 9 'data_reduction_proxy_core_browser_sources' : [ |
| 10 # Note: sources list duplicated in GN build. | 10 # Note: sources list duplicated in GN build. |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 80 'data_reduction_proxy/core/common/lofi_decider.h', | 80 'data_reduction_proxy/core/common/lofi_decider.h', |
| 81 'data_reduction_proxy/core/common/lofi_ui_service.h', | 81 'data_reduction_proxy/core/common/lofi_ui_service.h', |
| 82 ], | 82 ], |
| 83 }, | 83 }, |
| 84 'conditions': [ | 84 'conditions': [ |
| 85 # Small versions of libraries for Cronet. | 85 # Small versions of libraries for Cronet. |
| 86 ['OS=="android"', { | 86 ['OS=="android"', { |
| 87 'targets' : [ | 87 'targets' : [ |
| 88 { | 88 { |
| 89 # GN version: //components/data_reduction_proxy/core/browser:browser_ small | 89 # GN version: //components/data_reduction_proxy/core/browser:browser_ small |
| 90 'target_name': 'data_reduction_proxy_core_browser_small', | 90 'target_name': 'data_reduction_proxy_core_browser_small', |
|
bengr
2016/04/01 17:46:06
Do we still need _small versions of these targets
kapishnikov
2016/04/01 18:55:01
The difference between |data_reduction_proxy_core_
| |
| 91 'type': 'static_library', | 91 'type': 'static_library', |
| 92 'dependencies': [ | 92 'dependencies': [ |
| 93 '<@(data_reduction_proxy_core_browser_deps)', | 93 '<@(data_reduction_proxy_core_browser_deps)', |
| 94 '../net/net.gyp:net_small', | 94 '../net/net.gyp:net', |
| 95 '../url/url.gyp:url_lib_use_icu_alternatives_on_android', | 95 '../url/url.gyp:url_lib', |
| 96 'data_reduction_proxy_core_common_small', | 96 'data_reduction_proxy_core_common_small', |
| 97 'data_reduction_proxy_proto', | 97 'data_reduction_proxy_proto', |
| 98 ], | 98 ], |
| 99 'include_dirs': [ | 99 'include_dirs': [ |
| 100 '..', | 100 '..', |
| 101 ], | 101 ], |
| 102 'sources': [ | 102 'sources': [ |
| 103 '<@(data_reduction_proxy_core_browser_sources)' | 103 '<@(data_reduction_proxy_core_browser_sources)' |
| 104 ], | 104 ], |
| 105 }, | 105 }, |
| 106 { | 106 { |
| 107 # GN version: //components/data_reduction_proxy/core/common:common_sm all | 107 # GN version: //components/data_reduction_proxy/core/common:common_sm all |
| 108 'target_name': 'data_reduction_proxy_core_common_small', | 108 'target_name': 'data_reduction_proxy_core_common_small', |
| 109 'type': 'static_library', | 109 'type': 'static_library', |
| 110 'dependencies': [ | 110 'dependencies': [ |
| 111 '../base/base.gyp:base', | 111 '../base/base.gyp:base', |
| 112 '../url/url.gyp:url_lib_use_icu_alternatives_on_android', | 112 '../url/url.gyp:url_lib', |
| 113 'data_reduction_proxy_proto', | 113 'data_reduction_proxy_proto', |
| 114 ], | 114 ], |
| 115 'include_dirs': [ | 115 'include_dirs': [ |
| 116 '..', | 116 '..', |
| 117 ], | 117 ], |
| 118 'sources': [ | 118 'sources': [ |
| 119 '<@(data_reduction_proxy_core_common_sources)' | 119 '<@(data_reduction_proxy_core_common_sources)' |
| 120 ], | 120 ], |
| 121 }, | 121 }, |
| 122 ], | 122 ], |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 299 '<@(_outputs)', | 299 '<@(_outputs)', |
| 300 ], | 300 ], |
| 301 'includes': [ | 301 'includes': [ |
| 302 '../build/util/version.gypi', | 302 '../build/util/version.gypi', |
| 303 ], | 303 ], |
| 304 }, | 304 }, |
| 305 ], | 305 ], |
| 306 }, | 306 }, |
| 307 ], | 307 ], |
| 308 } | 308 } |
| OLD | NEW |