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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 'utility/media_galleries/iphoto_library_parser.h', | 323 'utility/media_galleries/iphoto_library_parser.h', |
324 ], | 324 ], |
325 }], | 325 }], |
326 ['OS=="win"', { | 326 ['OS=="win"', { |
327 'sources': [ | 327 'sources': [ |
328 'utility/networking_private_handler.cc', | 328 'utility/networking_private_handler.cc', |
329 'utility/networking_private_handler.h', | 329 'utility/networking_private_handler.h', |
330 'utility/wifi/wifi_service.h', | 330 'utility/wifi/wifi_service.h', |
331 'utility/wifi/wifi_service.cc', | 331 'utility/wifi/wifi_service.cc', |
332 'utility/wifi/wifi_service_mock.cc', | 332 'utility/wifi/wifi_service_mock.cc', |
| 333 'utility/wifi/wifi_service_win.cc', |
333 ], | 334 ], |
| 335 'link_settings': { |
| 336 'libraries': [ |
| 337 '-lwlanapi.lib', |
| 338 ], |
| 339 }, |
334 }], | 340 }], |
335 ['use_openssl==1', { | 341 ['use_openssl==1', { |
336 'sources!': [ | 342 'sources!': [ |
337 'utility/importer/nss_decryptor.cc', | 343 'utility/importer/nss_decryptor.cc', |
338 ] | 344 ] |
339 }], | 345 }], |
340 ['OS!="win" and OS!="mac" and use_openssl==0', { | 346 ['OS!="win" and OS!="mac" and use_openssl==0', { |
341 'dependencies': [ | 347 'dependencies': [ |
342 '../crypto/crypto.gyp:crypto', | 348 '../crypto/crypto.gyp:crypto', |
343 ], | 349 ], |
(...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1181 'sources': [ | 1187 'sources': [ |
1182 'service/cloud_print/print_system_cups.cc', | 1188 'service/cloud_print/print_system_cups.cc', |
1183 ], | 1189 ], |
1184 }], | 1190 }], |
1185 ], | 1191 ], |
1186 }, | 1192 }, |
1187 ], | 1193 ], |
1188 }], | 1194 }], |
1189 ], # 'conditions' | 1195 ], # 'conditions' |
1190 } | 1196 } |
OLD | NEW |