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

Side by Side Diff: chrome/chrome.gyp

Issue 54323003: Base infrastructure for Networking Private API on Windows and Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unused 'CheckServiceError()'. Created 7 years, 1 month 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 '..', 250 '..',
251 '<(grit_out_dir)', 251 '<(grit_out_dir)',
252 ], 252 ],
253 }, 253 },
254 { 254 {
255 'target_name': 'utility', 255 'target_name': 'utility',
256 'type': 'static_library', 256 'type': 'static_library',
257 'variables': { 'enable_wexit_time_destructors': 1, }, 257 'variables': { 'enable_wexit_time_destructors': 1, },
258 'dependencies': [ 258 'dependencies': [
259 '../base/base.gyp:base', 259 '../base/base.gyp:base',
260 '../components/components.gyp:onc_component',
260 '../content/content.gyp:content_utility', 261 '../content/content.gyp:content_utility',
261 '../media/media.gyp:media', 262 '../media/media.gyp:media',
262 '../skia/skia.gyp:skia', 263 '../skia/skia.gyp:skia',
263 '../third_party/libxml/libxml.gyp:libxml', 264 '../third_party/libxml/libxml.gyp:libxml',
264 'common', 265 'common',
265 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 266 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
266 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 267 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
267 ], 268 ],
268 'sources': [ 269 'sources': [
269 'utility/chrome_content_utility_client.cc', 270 'utility/chrome_content_utility_client.cc',
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
1122 'sources': [ 1123 'sources': [
1123 'service/cloud_print/print_system_dummy.cc', 1124 'service/cloud_print/print_system_dummy.cc',
1124 ], 1125 ],
1125 }], 1126 }],
1126 ], 1127 ],
1127 }, 1128 },
1128 ], 1129 ],
1129 }], 1130 }],
1130 ], # 'conditions' 1131 ], # 'conditions'
1131 } 1132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698