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

Side by Side Diff: trunk/src/build/common.gypi

Issue 66403003: Revert 233887 "Build mac and linux release builds with symbols a..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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
« 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 # 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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after
923 # used, but prefix headers will not be precompiled. This is useful when 923 # used, but prefix headers will not be precompiled. This is useful when
924 # using distcc to distribute a build to compile slaves that don't 924 # using distcc to distribute a build to compile slaves that don't
925 # share the same compiler executable as the system driving the compilation, 925 # share the same compiler executable as the system driving the compilation,
926 # because precompiled headers rely on pointers into a specific compiler 926 # because precompiled headers rely on pointers into a specific compiler
927 # executable's image. Setting this to 0 is needed to use an experimental 927 # executable's image. Setting this to 0 is needed to use an experimental
928 # Linux-Mac cross compiler distcc farm. 928 # Linux-Mac cross compiler distcc farm.
929 'chromium_mac_pch%': 1, 929 'chromium_mac_pch%': 1,
930 930
931 # The default value for mac_strip in target_defaults. This cannot be 931 # The default value for mac_strip in target_defaults. This cannot be
932 # set there, per the comment about variable% in a target_defaults. 932 # set there, per the comment about variable% in a target_defaults.
933 'mac_strip_release%': 0, 933 'mac_strip_release%': 1,
934 934
935 # Set to 1 to enable code coverage. In addition to build changes 935 # Set to 1 to enable code coverage. In addition to build changes
936 # (e.g. extra CFLAGS), also creates a new target in the src/chrome 936 # (e.g. extra CFLAGS), also creates a new target in the src/chrome
937 # project file called "coverage". 937 # project file called "coverage".
938 # Currently ignored on Windows. 938 # Currently ignored on Windows.
939 'coverage%': 0, 939 'coverage%': 0,
940 940
941 # Set to 1 to enable java code coverage. Instruments classes during build 941 # Set to 1 to enable java code coverage. Instruments classes during build
942 # to produce .ec files during runtime. 942 # to produce .ec files during runtime.
943 'emma_coverage%': 0, 943 'emma_coverage%': 0,
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
1015 1015
1016 # Enable sampling based profiler. 1016 # Enable sampling based profiler.
1017 # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html 1017 # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html
1018 'profiling%': '0', 1018 'profiling%': '0',
1019 # Profile without optimizing out stack frames when profiling==1. 1019 # Profile without optimizing out stack frames when profiling==1.
1020 'profiling_full_stack_frames%': '0', 1020 'profiling_full_stack_frames%': '0',
1021 1021
1022 # Enable strict glibc debug mode. 1022 # Enable strict glibc debug mode.
1023 'glibcxx_debug%': 0, 1023 'glibcxx_debug%': 0,
1024 # And if we want to dump symbols for Breakpad-enabled builds. 1024 # And if we want to dump symbols for Breakpad-enabled builds.
1025 'linux_dump_symbols%': 1, 1025 'linux_dump_symbols%': 0,
1026 # And if we want to strip the binary after dumping symbols. 1026 # And if we want to strip the binary after dumping symbols.
1027 'linux_strip_binary%': 0, 1027 'linux_strip_binary%': 0,
1028 # Strip the test binaries needed for Linux reliability tests. 1028 # Strip the test binaries needed for Linux reliability tests.
1029 'linux_strip_reliability_tests%': 0, 1029 'linux_strip_reliability_tests%': 0,
1030 1030
1031 # Enable TCMalloc. 1031 # Enable TCMalloc.
1032 'linux_use_tcmalloc%': 1, 1032 'linux_use_tcmalloc%': 1,
1033 'android_use_tcmalloc%': 0, 1033 'android_use_tcmalloc%': 0,
1034 1034
1035 # Disable TCMalloc's heapchecker. 1035 # Disable TCMalloc's heapchecker.
(...skipping 3656 matching lines...) Expand 10 before | Expand all | Expand 10 after
4692 # settings in target dicts. SYMROOT is a special case, because many other 4692 # settings in target dicts. SYMROOT is a special case, because many other
4693 # Xcode variables depend on it, including variables such as 4693 # Xcode variables depend on it, including variables such as
4694 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4694 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4695 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4695 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4696 # files to appear (when present) in the UI as actual files and not red 4696 # files to appear (when present) in the UI as actual files and not red
4697 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4697 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4698 # and therefore SYMROOT, needs to be set at the project level. 4698 # and therefore SYMROOT, needs to be set at the project level.
4699 'SYMROOT': '<(DEPTH)/xcodebuild', 4699 'SYMROOT': '<(DEPTH)/xcodebuild',
4700 }, 4700 },
4701 } 4701 }
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