| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', |
| 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', |
| 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 { | |
| 107 # GN version: //components/data_reduction_proxy/core/common:common_sm
all | |
| 108 'target_name': 'data_reduction_proxy_core_common_small', | |
| 109 'type': 'static_library', | |
| 110 'dependencies': [ | |
| 111 '../base/base.gyp:base', | |
| 112 '../url/url.gyp:url_lib_use_icu_alternatives_on_android', | |
| 113 'data_reduction_proxy_proto', | |
| 114 ], | |
| 115 'include_dirs': [ | |
| 116 '..', | |
| 117 ], | |
| 118 'sources': [ | |
| 119 '<@(data_reduction_proxy_core_common_sources)' | |
| 120 ], | |
| 121 }, | |
| 122 ], | 106 ], |
| 123 }], | 107 }], |
| 124 ['OS!="ios"', { | 108 ['OS!="ios"', { |
| 125 'targets' : [ | 109 'targets' : [ |
| 126 { | 110 { |
| 127 # GN version: //components/data_reduction_proxy/content/common | 111 # GN version: //components/data_reduction_proxy/content/common |
| 128 'target_name': 'data_reduction_proxy_content_common', | 112 'target_name': 'data_reduction_proxy_content_common', |
| 129 'type': 'static_library', | 113 'type': 'static_library', |
| 130 'dependencies': [ | 114 'dependencies': [ |
| 131 '../content/content.gyp:content_common', | 115 '../content/content.gyp:content_common', |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 '<@(_outputs)', | 283 '<@(_outputs)', |
| 300 ], | 284 ], |
| 301 'includes': [ | 285 'includes': [ |
| 302 '../build/util/version.gypi', | 286 '../build/util/version.gypi', |
| 303 ], | 287 ], |
| 304 }, | 288 }, |
| 305 ], | 289 ], |
| 306 }, | 290 }, |
| 307 ], | 291 ], |
| 308 } | 292 } |
| OLD | NEW |