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

Side by Side Diff: chrome/chrome.gyp

Issue 22295002: Base infrastructure for Networking Private API on Windows and Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reset DHCP after WiFi Connect to speed up the connection after factory reset. Created 7 years, 3 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
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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 'utility/importer/nss_decryptor.cc', 279 'utility/importer/nss_decryptor.cc',
280 'utility/importer/nss_decryptor.h', 280 'utility/importer/nss_decryptor.h',
281 'utility/importer/nss_decryptor_mac.h', 281 'utility/importer/nss_decryptor_mac.h',
282 'utility/importer/nss_decryptor_mac.mm', 282 'utility/importer/nss_decryptor_mac.mm',
283 'utility/importer/nss_decryptor_win.cc', 283 'utility/importer/nss_decryptor_win.cc',
284 'utility/importer/nss_decryptor_win.h', 284 'utility/importer/nss_decryptor_win.h',
285 'utility/importer/safari_importer.h', 285 'utility/importer/safari_importer.h',
286 'utility/importer/safari_importer.mm', 286 'utility/importer/safari_importer.mm',
287 'utility/media_galleries/itunes_pref_parser_win.cc', 287 'utility/media_galleries/itunes_pref_parser_win.cc',
288 'utility/media_galleries/itunes_pref_parser_win.h', 288 'utility/media_galleries/itunes_pref_parser_win.h',
289 'utility/networking_private_handler.cc',
290 'utility/networking_private_handler.h',
289 'utility/profile_import_handler.cc', 291 'utility/profile_import_handler.cc',
290 'utility/profile_import_handler.h', 292 'utility/profile_import_handler.h',
291 'utility/utility_message_handler.h', 293 'utility/utility_message_handler.h',
292 'utility/web_resource_unpacker.cc', 294 'utility/web_resource_unpacker.cc',
293 'utility/web_resource_unpacker.h', 295 'utility/web_resource_unpacker.h',
296 'utility/wifi/wifi_service.h',
297 'utility/wifi/wifi_service.cc',
298 'utility/wifi/wifi_service_win.cc',
299 'utility/wifi/wifi_service_mock.cc',
294 ], 300 ],
295 'include_dirs': [ 301 'include_dirs': [
296 '..', 302 '..',
297 '<(grit_out_dir)', 303 '<(grit_out_dir)',
298 ], 304 ],
299 'conditions': [ 305 'conditions': [
300 ['toolkit_uses_gtk == 1', { 306 ['toolkit_uses_gtk == 1', {
301 'dependencies': [ 307 'dependencies': [
302 '../build/linux/system.gyp:gtk', 308 '../build/linux/system.gyp:gtk',
303 ], 309 ],
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 'sources': [ 1198 'sources': [
1193 'service/cloud_print/print_system_cups.cc', 1199 'service/cloud_print/print_system_cups.cc',
1194 ], 1200 ],
1195 }], 1201 }],
1196 ], 1202 ],
1197 }, 1203 },
1198 ], 1204 ],
1199 }], 1205 }],
1200 ], # 'conditions' 1206 ], # 'conditions'
1201 } 1207 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698