Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(831)

Side by Side Diff: chrome/chrome.gyp

Issue 27722003: Windows-specific implementation of Networking Private API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address code review comments. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_dll.gypi » ('j') | chrome/utility/wifi/wifi_service_win.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_dll.gypi » ('j') | chrome/utility/wifi/wifi_service_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698