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

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: Perform Crypto Verify* on WorkerPool, Make EventRouter a Network* events observer and sender. 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
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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 '..', 237 '..',
238 '<(grit_out_dir)', 238 '<(grit_out_dir)',
239 ], 239 ],
240 }, 240 },
241 { 241 {
242 'target_name': 'utility', 242 'target_name': 'utility',
243 'type': 'static_library', 243 'type': 'static_library',
244 'variables': { 'enable_wexit_time_destructors': 1, }, 244 'variables': { 'enable_wexit_time_destructors': 1, },
245 'dependencies': [ 245 'dependencies': [
246 '../base/base.gyp:base', 246 '../base/base.gyp:base',
247 '../components/components.gyp:onc_component',
247 '../content/content.gyp:content_utility', 248 '../content/content.gyp:content_utility',
248 '../media/media.gyp:media', 249 '../media/media.gyp:media',
249 '../skia/skia.gyp:skia', 250 '../skia/skia.gyp:skia',
250 '../third_party/libxml/libxml.gyp:libxml', 251 '../third_party/libxml/libxml.gyp:libxml',
251 'common', 252 'common',
252 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 253 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
253 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 254 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
254 ], 255 ],
255 'sources': [ 256 'sources': [
256 'utility/chrome_content_utility_client.cc', 257 'utility/chrome_content_utility_client.cc',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 'utility/media_galleries/itunes_library_parser.cc', 308 'utility/media_galleries/itunes_library_parser.cc',
308 'utility/media_galleries/itunes_library_parser.h', 309 'utility/media_galleries/itunes_library_parser.h',
309 'utility/media_galleries/picasa_album_table_reader.cc', 310 'utility/media_galleries/picasa_album_table_reader.cc',
310 'utility/media_galleries/picasa_album_table_reader.h', 311 'utility/media_galleries/picasa_album_table_reader.h',
311 'utility/media_galleries/picasa_albums_indexer.cc', 312 'utility/media_galleries/picasa_albums_indexer.cc',
312 'utility/media_galleries/picasa_albums_indexer.h', 313 'utility/media_galleries/picasa_albums_indexer.h',
313 'utility/media_galleries/pmp_column_reader.cc', 314 'utility/media_galleries/pmp_column_reader.cc',
314 'utility/media_galleries/pmp_column_reader.h', 315 'utility/media_galleries/pmp_column_reader.h',
315 ], 316 ],
316 }], 317 }],
318 ['OS=="win"', {
319 'sources': [
320 'utility/networking_private_handler.cc',
321 'utility/networking_private_handler.h',
322 'utility/wifi/wifi_service.h',
323 'utility/wifi/wifi_service.cc',
324 'utility/wifi/wifi_service_mock.cc',
325 ],
326 }],
317 ['use_openssl==1', { 327 ['use_openssl==1', {
318 'sources!': [ 328 'sources!': [
319 'utility/importer/nss_decryptor.cc', 329 'utility/importer/nss_decryptor.cc',
320 ] 330 ]
321 }], 331 }],
322 ['OS!="win" and OS!="mac" and use_openssl==0', { 332 ['OS!="win" and OS!="mac" and use_openssl==0', {
323 'dependencies': [ 333 'dependencies': [
324 '../crypto/crypto.gyp:crypto', 334 '../crypto/crypto.gyp:crypto',
325 ], 335 ],
326 'sources': [ 336 'sources': [
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after
1183 'sources': [ 1193 'sources': [
1184 'service/cloud_print/print_system_cups.cc', 1194 'service/cloud_print/print_system_cups.cc',
1185 ], 1195 ],
1186 }], 1196 }],
1187 ], 1197 ],
1188 }, 1198 },
1189 ], 1199 ],
1190 }], 1200 }],
1191 ], # 'conditions' 1201 ], # 'conditions'
1192 } 1202 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698