OLD | NEW |
---|---|
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 2814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2825 }, | 2825 }, |
2826 ], | 2826 ], |
2827 ], | 2827 ], |
2828 }, | 2828 }, |
2829 ], | 2829 ], |
2830 ['component=="static_library"', { | 2830 ['component=="static_library"', { |
2831 'defines': [ | 2831 'defines': [ |
2832 '_HAS_EXCEPTIONS=0', | 2832 '_HAS_EXCEPTIONS=0', |
2833 ], | 2833 ], |
2834 }], | 2834 }], |
2835 # To support installing a component build (where the DLLs are not in | |
2836 # same directory as chrome.exe and setup.exe): | |
rvargas (doing something else)
2012/05/16 01:09:58
What does this exactly mean? I don't think this is
gab
2012/05/16 01:15:54
It will, but not this way. Follow https://chromium
| |
2837 # create_installer_archive.py writes custom manifests for all the | |
2838 # DLLs. The setting below prevents VS from automatically generating | |
2839 # the usual manifests for those DLLs which would override the custom | |
2840 # external manifests. | |
2841 ['component=="shared_library"', { | |
2842 'target_conditions': [ | |
2843 ['_type=="shared_library"', { | |
2844 'msvs_settings': { | |
2845 'VCLinkerTool': { | |
2846 'GenerateManifest': 'false', | |
2847 }, | |
2848 }, | |
2849 }], | |
2850 ], | |
2851 }], | |
2835 ['MSVS_VERSION=="2008"', { | 2852 ['MSVS_VERSION=="2008"', { |
2836 'defines': [ | 2853 'defines': [ |
2837 '_HAS_TR1=0', | 2854 '_HAS_TR1=0', |
2838 ], | 2855 ], |
2839 }], | 2856 }], |
2840 ['secure_atl', { | 2857 ['secure_atl', { |
2841 'defines': [ | 2858 'defines': [ |
2842 '_SECURE_ATL', | 2859 '_SECURE_ATL', |
2843 ], | 2860 ], |
2844 }], | 2861 }], |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3060 # settings in target dicts. SYMROOT is a special case, because many other | 3077 # settings in target dicts. SYMROOT is a special case, because many other |
3061 # Xcode variables depend on it, including variables such as | 3078 # Xcode variables depend on it, including variables such as |
3062 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3079 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3063 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3080 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3064 # files to appear (when present) in the UI as actual files and not red | 3081 # files to appear (when present) in the UI as actual files and not red |
3065 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3082 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3066 # and therefore SYMROOT, needs to be set at the project level. | 3083 # and therefore SYMROOT, needs to be set at the project level. |
3067 'SYMROOT': '<(DEPTH)/xcodebuild', | 3084 'SYMROOT': '<(DEPTH)/xcodebuild', |
3068 }, | 3085 }, |
3069 } | 3086 } |
OLD | NEW |