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

Side by Side Diff: build/common.gypi

Issue 179903004: Always embed manifests, even in component builds! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: don't change .bat file in this CL -- CQ no likee Batch Created 6 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 | chrome/chrome_exe.gypi » ('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 2036 matching lines...) Expand 10 before | Expand all | Expand 10 after
2047 # instead of O(N*logN). This is particularly slow under memory 2047 # instead of O(N*logN). This is particularly slow under memory
2048 # tools like ThreadSanitizer so we want it to be disablable. 2048 # tools like ThreadSanitizer so we want it to be disablable.
2049 # See http://msdn.microsoft.com/en-us/library/aa985982(v=VS.80).aspx 2049 # See http://msdn.microsoft.com/en-us/library/aa985982(v=VS.80).aspx
2050 'win_debug_disable_iterator_debugging%': '0', 2050 'win_debug_disable_iterator_debugging%': '0',
2051 2051
2052 # An application manifest fragment to declare compatibility settings for 2052 # An application manifest fragment to declare compatibility settings for
2053 # 'executable' targets. Ignored in other target type. 2053 # 'executable' targets. Ignored in other target type.
2054 'win_exe_compatibility_manifest%': 2054 'win_exe_compatibility_manifest%':
2055 '<(DEPTH)\\build\\win\\compatibility.manifest', 2055 '<(DEPTH)\\build\\win\\compatibility.manifest',
2056 2056
2057 # Set to 1 to generate external manifest instead of embedding it for
2058 # 'executable' target. Does nothing for other target type. This flag is
2059 # used to make mini_installer compatible with the component build.
2060 # See http://crbug.com/127233
2061 'win_use_external_manifest%': 0,
2062
2063 'release_extra_cflags%': '', 2057 'release_extra_cflags%': '',
2064 'debug_extra_cflags%': '', 2058 'debug_extra_cflags%': '',
2065 2059
2066 'release_valgrind_build%': '<(release_valgrind_build)', 2060 'release_valgrind_build%': '<(release_valgrind_build)',
2067 2061
2068 # the non-qualified versions are widely assumed to be *nix-only 2062 # the non-qualified versions are widely assumed to be *nix-only
2069 'win_release_extra_cflags%': '', 2063 'win_release_extra_cflags%': '',
2070 'win_debug_extra_cflags%': '', 2064 'win_debug_extra_cflags%': '',
2071 2065
2072 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600 2066 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600
(...skipping 2646 matching lines...) Expand 10 before | Expand all | Expand 10 after
4719 'ProxyFileName': '$(InputName)_p.c', 4713 'ProxyFileName': '$(InputName)_p.c',
4720 }, 4714 },
4721 'VCResourceCompilerTool': { 4715 'VCResourceCompilerTool': {
4722 'Culture' : '1033', 4716 'Culture' : '1033',
4723 'AdditionalIncludeDirectories': [ 4717 'AdditionalIncludeDirectories': [
4724 '<(DEPTH)', 4718 '<(DEPTH)',
4725 '<(SHARED_INTERMEDIATE_DIR)', 4719 '<(SHARED_INTERMEDIATE_DIR)',
4726 ], 4720 ],
4727 }, 4721 },
4728 'target_conditions': [ 4722 'target_conditions': [
4723 ['_type=="executable"', {
4724 'VCManifestTool': {
4725 'EmbedManifest': 'true',
4726 },
4727 }],
4729 ['_type=="executable" and ">(win_exe_compatibility_manifest)"!=""', { 4728 ['_type=="executable" and ">(win_exe_compatibility_manifest)"!=""', {
4730 'VCManifestTool': { 4729 'VCManifestTool': {
4731 'AdditionalManifestFiles': [ 4730 'AdditionalManifestFiles': [
4732 '>(win_exe_compatibility_manifest)', 4731 '>(win_exe_compatibility_manifest)',
4733 ], 4732 ],
4734 }, 4733 },
4735 }], 4734 }],
4736 ['_type=="executable" and >(win_use_external_manifest)==0', {
4737 'VCManifestTool': {
4738 'EmbedManifest': 'true',
4739 }
4740 }],
4741 ['_type=="executable" and >(win_use_external_manifest)==1', {
4742 'VCManifestTool': {
4743 'EmbedManifest': 'false',
4744 }
4745 }],
4746 ], 4735 ],
4747 'conditions': [ 4736 'conditions': [
4748 ['clang==1', { 4737 ['clang==1', {
4749 # Building with Clang on Windows is a work in progress and very 4738 # Building with Clang on Windows is a work in progress and very
4750 # experimental. See crbug.com/82385. 4739 # experimental. See crbug.com/82385.
4751 'VCCLCompilerTool': { 4740 'VCCLCompilerTool': {
4752 'WarnAsError': 'false', 4741 'WarnAsError': 'false',
4753 'RuntimeTypeInfo': 'false', 4742 'RuntimeTypeInfo': 'false',
4754 'AdditionalOptions': [ 4743 'AdditionalOptions': [
4755 '/fallback', 4744 '/fallback',
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
5027 # settings in target dicts. SYMROOT is a special case, because many other 5016 # settings in target dicts. SYMROOT is a special case, because many other
5028 # Xcode variables depend on it, including variables such as 5017 # Xcode variables depend on it, including variables such as
5029 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5018 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5030 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5019 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5031 # files to appear (when present) in the UI as actual files and not red 5020 # files to appear (when present) in the UI as actual files and not red
5032 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5021 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5033 # and therefore SYMROOT, needs to be set at the project level. 5022 # and therefore SYMROOT, needs to be set at the project level.
5034 'SYMROOT': '<(DEPTH)/xcodebuild', 5023 'SYMROOT': '<(DEPTH)/xcodebuild',
5035 }, 5024 },
5036 } 5025 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_exe.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698