| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 'utility/media_galleries/pmp_column_reader.h', | 315 'utility/media_galleries/pmp_column_reader.h', |
| 316 ], | 316 ], |
| 317 }], | 317 }], |
| 318 ['OS=="win"', { | 318 ['OS=="win"', { |
| 319 'sources': [ | 319 'sources': [ |
| 320 'utility/networking_private_handler.cc', | 320 'utility/networking_private_handler.cc', |
| 321 'utility/networking_private_handler.h', | 321 'utility/networking_private_handler.h', |
| 322 'utility/wifi/wifi_service.h', | 322 'utility/wifi/wifi_service.h', |
| 323 'utility/wifi/wifi_service.cc', | 323 'utility/wifi/wifi_service.cc', |
| 324 'utility/wifi/wifi_service_mock.cc', | 324 'utility/wifi/wifi_service_mock.cc', |
| 325 'utility/wifi/wifi_service_win.cc', |
| 325 ], | 326 ], |
| 327 'link_settings': { |
| 328 'libraries': [ |
| 329 '-lwlanapi.lib', |
| 330 ], |
| 331 }, |
| 326 }], | 332 }], |
| 327 ['use_openssl==1', { | 333 ['use_openssl==1', { |
| 328 'sources!': [ | 334 'sources!': [ |
| 329 'utility/importer/nss_decryptor.cc', | 335 'utility/importer/nss_decryptor.cc', |
| 330 ] | 336 ] |
| 331 }], | 337 }], |
| 332 ['OS!="win" and OS!="mac" and use_openssl==0', { | 338 ['OS!="win" and OS!="mac" and use_openssl==0', { |
| 333 'dependencies': [ | 339 'dependencies': [ |
| 334 '../crypto/crypto.gyp:crypto', | 340 '../crypto/crypto.gyp:crypto', |
| 335 ], | 341 ], |
| (...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1193 'sources': [ | 1199 'sources': [ |
| 1194 'service/cloud_print/print_system_cups.cc', | 1200 'service/cloud_print/print_system_cups.cc', |
| 1195 ], | 1201 ], |
| 1196 }], | 1202 }], |
| 1197 ], | 1203 ], |
| 1198 }, | 1204 }, |
| 1199 ], | 1205 ], |
| 1200 }], | 1206 }], |
| 1201 ], # 'conditions' | 1207 ], # 'conditions' |
| 1202 } | 1208 } |
| OLD | NEW |