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

Side by Side Diff: build/common.gypi

Issue 55333002: Make possible to check memory allocations inside chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make possible to check memory allocations inside chromium 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
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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after
1481 },{ 1481 },{
1482 'msvs_large_module_debug_link_mode%': '2', # Yes 1482 'msvs_large_module_debug_link_mode%': '2', # Yes
1483 }], 1483 }],
1484 ['MSVS_VERSION=="2012e" or MSVS_VERSION=="2010e"', { 1484 ['MSVS_VERSION=="2012e" or MSVS_VERSION=="2010e"', {
1485 'msvs_express%': 1, 1485 'msvs_express%': 1,
1486 'secure_atl%': 0, 1486 'secure_atl%': 0,
1487 },{ 1487 },{
1488 'msvs_express%': 0, 1488 'msvs_express%': 0,
1489 'secure_atl%': 1, 1489 'secure_atl%': 1,
1490 }], 1490 }],
1491 ['win_use_allocator_shim==1', {
1492 'defines': [
1493 'WIN_USE_ALLOCATOR_SHIM'
1494 ],
1495 }],
1491 ], 1496 ],
1492 'nacl_win64_defines': [ 1497 'nacl_win64_defines': [
1493 # This flag is used to minimize dependencies when building 1498 # This flag is used to minimize dependencies when building
1494 # Native Client loader for 64-bit Windows. 1499 # Native Client loader for 64-bit Windows.
1495 'NACL_WIN64', 1500 'NACL_WIN64',
1496 ], 1501 ],
1497 }], 1502 }],
1498 1503
1499 ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios"', { 1504 ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios"', {
1500 'use_cups%': 1, 1505 'use_cups%': 1,
(...skipping 3161 matching lines...) Expand 10 before | Expand all | Expand 10 after
4662 # settings in target dicts. SYMROOT is a special case, because many other 4667 # settings in target dicts. SYMROOT is a special case, because many other
4663 # Xcode variables depend on it, including variables such as 4668 # Xcode variables depend on it, including variables such as
4664 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4669 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4665 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4670 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4666 # files to appear (when present) in the UI as actual files and not red 4671 # files to appear (when present) in the UI as actual files and not red
4667 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4672 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4668 # and therefore SYMROOT, needs to be set at the project level. 4673 # and therefore SYMROOT, needs to be set at the project level.
4669 'SYMROOT': '<(DEPTH)/xcodebuild', 4674 'SYMROOT': '<(DEPTH)/xcodebuild',
4670 }, 4675 },
4671 } 4676 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698