| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| 11 ], | 11 ], |
| 12 'targets': [ | 12 'targets': [ |
| 13 { | 13 { |
| 14 # GN version: //google_apis | 14 # GN version: //google_apis |
| 15 'target_name': 'google_apis', | 15 'target_name': 'google_apis', |
| 16 'type': 'static_library', | 16 'type': 'static_library', |
| 17 'includes': [ | 17 'includes': [ |
| 18 'determine_use_official_keys.gypi', | 18 'determine_use_official_keys.gypi', |
| 19 ], | 19 ], |
| 20 'dependencies': [ | 20 'dependencies': [ |
| 21 '../base/base.gyp:base', | 21 '../base/base.gyp:base', |
| 22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 23 '../components/components.gyp:data_use_measurement_core', |
| 23 '../crypto/crypto.gyp:crypto', | 24 '../crypto/crypto.gyp:crypto', |
| 24 '../net/net.gyp:net', | 25 '../net/net.gyp:net', |
| 25 '../third_party/libxml/libxml.gyp:libxml', | 26 '../third_party/libxml/libxml.gyp:libxml', |
| 26 '../url/url.gyp:url_lib', | 27 '../url/url.gyp:url_lib', |
| 28 |
| 27 ], | 29 ], |
| 28 'conditions': [ | 30 'conditions': [ |
| 29 ['google_api_key!=""', { | 31 ['google_api_key!=""', { |
| 30 'defines': ['GOOGLE_API_KEY="<(google_api_key)"'], | 32 'defines': ['GOOGLE_API_KEY="<(google_api_key)"'], |
| 31 }], | 33 }], |
| 32 ['google_default_client_id!=""', { | 34 ['google_default_client_id!=""', { |
| 33 'defines': [ | 35 'defines': [ |
| 34 'GOOGLE_DEFAULT_CLIENT_ID="<(google_default_client_id)"', | 36 'GOOGLE_DEFAULT_CLIENT_ID="<(google_default_client_id)"', |
| 35 ] | 37 ] |
| 36 }], | 38 }], |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 '../build/isolate.gypi', | 222 '../build/isolate.gypi', |
| 221 ], | 223 ], |
| 222 'sources': [ | 224 'sources': [ |
| 223 'google_apis_unittests.isolate', | 225 'google_apis_unittests.isolate', |
| 224 ], | 226 ], |
| 225 }, | 227 }, |
| 226 ], | 228 ], |
| 227 }], | 229 }], |
| 228 ], | 230 ], |
| 229 } | 231 } |
| OLD | NEW |