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

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: Use using chromeos:: to avoid lengthy namespace prefixes. 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 22 matching lines...) Expand all
279 'utility/importer/nss_decryptor.cc', 280 'utility/importer/nss_decryptor.cc',
280 'utility/importer/nss_decryptor.h', 281 'utility/importer/nss_decryptor.h',
281 'utility/importer/nss_decryptor_mac.h', 282 'utility/importer/nss_decryptor_mac.h',
282 'utility/importer/nss_decryptor_mac.mm', 283 'utility/importer/nss_decryptor_mac.mm',
283 'utility/importer/nss_decryptor_win.cc', 284 'utility/importer/nss_decryptor_win.cc',
284 'utility/importer/nss_decryptor_win.h', 285 'utility/importer/nss_decryptor_win.h',
285 'utility/importer/safari_importer.h', 286 'utility/importer/safari_importer.h',
286 'utility/importer/safari_importer.mm', 287 'utility/importer/safari_importer.mm',
287 'utility/media_galleries/itunes_pref_parser_win.cc', 288 'utility/media_galleries/itunes_pref_parser_win.cc',
288 'utility/media_galleries/itunes_pref_parser_win.h', 289 'utility/media_galleries/itunes_pref_parser_win.h',
290 'utility/networking_private_handler.cc',
291 'utility/networking_private_handler.h',
289 'utility/profile_import_handler.cc', 292 'utility/profile_import_handler.cc',
290 'utility/profile_import_handler.h', 293 'utility/profile_import_handler.h',
291 'utility/utility_message_handler.h', 294 'utility/utility_message_handler.h',
292 'utility/web_resource_unpacker.cc', 295 'utility/web_resource_unpacker.cc',
293 'utility/web_resource_unpacker.h', 296 'utility/web_resource_unpacker.h',
297 'utility/wifi/wifi_service.h',
298 'utility/wifi/wifi_service.cc',
299 'utility/wifi/wifi_service_win.cc',
300 'utility/wifi/wifi_service_mock.cc',
294 ], 301 ],
295 'include_dirs': [ 302 'include_dirs': [
296 '..', 303 '..',
297 '<(grit_out_dir)', 304 '<(grit_out_dir)',
298 ], 305 ],
299 'conditions': [ 306 'conditions': [
300 ['toolkit_uses_gtk == 1', { 307 ['toolkit_uses_gtk == 1', {
301 'dependencies': [ 308 'dependencies': [
302 '../build/linux/system.gyp:gtk', 309 '../build/linux/system.gyp:gtk',
303 ], 310 ],
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
1183 'sources': [ 1190 'sources': [
1184 'service/cloud_print/print_system_cups.cc', 1191 'service/cloud_print/print_system_cups.cc',
1185 ], 1192 ],
1186 }], 1193 }],
1187 ], 1194 ],
1188 }, 1195 },
1189 ], 1196 ],
1190 }], 1197 }],
1191 ], # 'conditions' 1198 ], # 'conditions'
1192 } 1199 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698