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 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 # GN version: //components/data_reduction_proxy/core/browser | 9 # GN version: //components/data_reduction_proxy/core/browser |
10 'target_name': 'data_reduction_proxy_core_browser', | 10 'target_name': 'data_reduction_proxy_core_browser', |
11 'type': 'static_library', | 11 'type': 'static_library', |
| 12 'conditions': [ |
| 13 ['OS != "android" and OS != "ios"', { |
| 14 'dependencies' : [ |
| 15 '../google_apis/google_apis.gyp:google_apis', |
| 16 ] |
| 17 }], |
| 18 ], |
12 'dependencies': [ | 19 'dependencies': [ |
13 'data_reduction_proxy_version_header', | 20 'data_reduction_proxy_version_header', |
14 '../base/base.gyp:base', | 21 '../base/base.gyp:base', |
15 '../crypto/crypto.gyp:crypto', | 22 '../crypto/crypto.gyp:crypto', |
16 '../net/net.gyp:net', | 23 '../net/net.gyp:net', |
17 'data_reduction_proxy_core_common', | 24 'data_reduction_proxy_core_common', |
18 'pref_registry', | 25 'pref_registry', |
19 ], | 26 ], |
20 'include_dirs': [ | 27 'include_dirs': [ |
21 '..', | 28 '..', |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 'includes': [ | 129 'includes': [ |
123 '../build/util/version.gypi', | 130 '../build/util/version.gypi', |
124 ], | 131 ], |
125 }, | 132 }, |
126 ], | 133 ], |
127 }, | 134 }, |
128 | 135 |
129 ], | 136 ], |
130 } | 137 } |
131 | 138 |
OLD | NEW |