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

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: Fixed compilation error. Created 7 years, 4 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 'utility/importer/nss_decryptor.cc', 285 'utility/importer/nss_decryptor.cc',
286 'utility/importer/nss_decryptor.h', 286 'utility/importer/nss_decryptor.h',
287 'utility/importer/nss_decryptor_mac.h', 287 'utility/importer/nss_decryptor_mac.h',
288 'utility/importer/nss_decryptor_mac.mm', 288 'utility/importer/nss_decryptor_mac.mm',
289 'utility/importer/nss_decryptor_win.cc', 289 'utility/importer/nss_decryptor_win.cc',
290 'utility/importer/nss_decryptor_win.h', 290 'utility/importer/nss_decryptor_win.h',
291 'utility/importer/safari_importer.h', 291 'utility/importer/safari_importer.h',
292 'utility/importer/safari_importer.mm', 292 'utility/importer/safari_importer.mm',
293 'utility/media_galleries/itunes_pref_parser_win.cc', 293 'utility/media_galleries/itunes_pref_parser_win.cc',
294 'utility/media_galleries/itunes_pref_parser_win.h', 294 'utility/media_galleries/itunes_pref_parser_win.h',
295 'utility/networking_private_handler.cc',
296 'utility/networking_private_handler.h',
295 'utility/profile_import_handler.cc', 297 'utility/profile_import_handler.cc',
296 'utility/profile_import_handler.h', 298 'utility/profile_import_handler.h',
297 'utility/utility_message_handler.h', 299 'utility/utility_message_handler.h',
298 'utility/web_resource_unpacker.cc', 300 'utility/web_resource_unpacker.cc',
299 'utility/web_resource_unpacker.h', 301 'utility/web_resource_unpacker.h',
302 'utility/wifi/wifi_service.h',
303 'utility/wifi/wifi_service.cc',
304 'utility/wifi/wifi_service_win.cc',
305 'utility/wifi/wifi_service_mock.cc',
300 ], 306 ],
301 'include_dirs': [ 307 'include_dirs': [
302 '..', 308 '..',
303 '<(grit_out_dir)', 309 '<(grit_out_dir)',
304 ], 310 ],
305 'conditions': [ 311 'conditions': [
306 ['toolkit_uses_gtk == 1', { 312 ['toolkit_uses_gtk == 1', {
307 'dependencies': [ 313 'dependencies': [
308 '../build/linux/system.gyp:gtk', 314 '../build/linux/system.gyp:gtk',
309 ], 315 ],
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
1195 ], # 'targets' 1201 ], # 'targets'
1196 'includes': [ 1202 'includes': [
1197 'chrome_android.gypi', 1203 'chrome_android.gypi',
1198 ]}, # 'includes' 1204 ]}, # 'includes'
1199 ], # OS=="android" 1205 ], # OS=="android"
1200 ['configuration_policy==1 and OS!="android"', { 1206 ['configuration_policy==1 and OS!="android"', {
1201 'includes': [ 'policy.gypi', ], 1207 'includes': [ 'policy.gypi', ],
1202 }], 1208 }],
1203 ], # 'conditions' 1209 ], # 'conditions'
1204 } 1210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698