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

Side by Side Diff: build/common.gypi

Issue 377613003: Cleanup: Remove references to reliability_tests in gyp files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | chrome/chrome.gyp » ('j') | 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 # 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 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 # Enable sampling based profiler. 1268 # Enable sampling based profiler.
1269 # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html 1269 # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html
1270 'profiling%': '0', 1270 'profiling%': '0',
1271 # Profile without optimizing out stack frames when profiling==1. 1271 # Profile without optimizing out stack frames when profiling==1.
1272 'profiling_full_stack_frames%': '0', 1272 'profiling_full_stack_frames%': '0',
1273 1273
1274 # And if we want to dump symbols for Breakpad-enabled builds. 1274 # And if we want to dump symbols for Breakpad-enabled builds.
1275 'linux_dump_symbols%': 0, 1275 'linux_dump_symbols%': 0,
1276 # And if we want to strip the binary after dumping symbols. 1276 # And if we want to strip the binary after dumping symbols.
1277 'linux_strip_binary%': 0, 1277 'linux_strip_binary%': 0,
1278 # Strip the test binaries needed for Linux reliability tests.
1279 'linux_strip_reliability_tests%': 0,
1280 # If we want stack unwind support for backtrace(). 1278 # If we want stack unwind support for backtrace().
1281 'debug_unwind_tables%': 1, 1279 'debug_unwind_tables%': 1,
1282 'release_unwind_tables%': 1, 1280 'release_unwind_tables%': 1,
1283 1281
1284 # Override where to find binutils 1282 # Override where to find binutils
1285 'binutils_version%': 0, 1283 'binutils_version%': 0,
1286 'binutils_dir%': '', 1284 'binutils_dir%': '',
1287 1285
1288 # Enable TCMalloc. 1286 # Enable TCMalloc.
1289 # Default of 'use_allocator' is set to 'none' if OS=='android' later. 1287 # Default of 'use_allocator' is set to 'none' if OS=='android' later.
(...skipping 4322 matching lines...) Expand 10 before | Expand all | Expand 10 after
5612 # settings in target dicts. SYMROOT is a special case, because many other 5610 # settings in target dicts. SYMROOT is a special case, because many other
5613 # Xcode variables depend on it, including variables such as 5611 # Xcode variables depend on it, including variables such as
5614 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5612 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5615 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5613 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5616 # files to appear (when present) in the UI as actual files and not red 5614 # files to appear (when present) in the UI as actual files and not red
5617 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5615 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5618 # and therefore SYMROOT, needs to be set at the project level. 5616 # and therefore SYMROOT, needs to be set at the project level.
5619 'SYMROOT': '<(DEPTH)/xcodebuild', 5617 'SYMROOT': '<(DEPTH)/xcodebuild',
5620 }, 5618 },
5621 } 5619 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698