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

Side by Side Diff: chrome/chrome.gyp

Issue 12095107: Make debugger and utility build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 'browser/devtools/devtools_window.cc', 229 'browser/devtools/devtools_window.cc',
230 'browser/devtools/remote_debugging_server.cc', 230 'browser/devtools/remote_debugging_server.cc',
231 ], 231 ],
232 }], 232 }],
233 ['debug_devtools==1', { 233 ['debug_devtools==1', {
234 'defines': [ 234 'defines': [
235 'DEBUG_DEVTOOLS=1', 235 'DEBUG_DEVTOOLS=1',
236 ], 236 ],
237 }], 237 }],
238 ], 238 ],
239 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
240 'msvs_disabled_warnings': [ 4267, ],
239 }, 241 },
240 { 242 {
241 'target_name': 'plugin', 243 'target_name': 'plugin',
242 'type': 'static_library', 244 'type': 'static_library',
243 'variables': { 'enable_wexit_time_destructors': 1, }, 245 'variables': { 'enable_wexit_time_destructors': 1, },
244 'dependencies': [ 246 'dependencies': [
245 'chrome_resources.gyp:chrome_strings', 247 'chrome_resources.gyp:chrome_strings',
246 '../base/base.gyp:base', 248 '../base/base.gyp:base',
247 '../content/content.gyp:content_plugin', 249 '../content/content.gyp:content_plugin',
248 ], 250 ],
(...skipping 29 matching lines...) Expand all
278 'dependencies': [ 280 'dependencies': [
279 '../build/linux/system.gyp:gtk', 281 '../build/linux/system.gyp:gtk',
280 ], 282 ],
281 }], 283 }],
282 ['OS=="android"', { 284 ['OS=="android"', {
283 'sources!': [ 285 'sources!': [
284 'utility/profile_import_handler.cc', 286 'utility/profile_import_handler.cc',
285 ], 287 ],
286 }], 288 }],
287 ], 289 ],
290 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
291 'msvs_disabled_warnings': [ 4267, ],
288 }, 292 },
289 { 293 {
290 'target_name': 'service', 294 'target_name': 'service',
291 'type': 'static_library', 295 'type': 'static_library',
292 'variables': { 'enable_wexit_time_destructors': 1, }, 296 'variables': { 'enable_wexit_time_destructors': 1, },
293 'dependencies': [ 297 'dependencies': [
294 'chrome_resources.gyp:chrome_strings', 298 'chrome_resources.gyp:chrome_strings',
295 'common', 299 'common',
296 'common_net', 300 'common_net',
297 '../base/base.gyp:base', 301 '../base/base.gyp:base',
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 '../build/java.gypi', 1098 '../build/java.gypi',
1095 ], 1099 ],
1096 }, 1100 },
1097 ], # 'targets' 1101 ], # 'targets'
1098 'includes': [ 1102 'includes': [
1099 'chrome_android.gypi', 1103 'chrome_android.gypi',
1100 ]}, # 'includes' 1104 ]}, # 'includes'
1101 ], # OS=="android" 1105 ], # OS=="android"
1102 ], # 'conditions' 1106 ], # 'conditions'
1103 } 1107 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698