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 2816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2827 }, | 2827 }, |
2828 ], | 2828 ], |
2829 ], | 2829 ], |
2830 }, | 2830 }, |
2831 ], | 2831 ], |
2832 ['component=="static_library"', { | 2832 ['component=="static_library"', { |
2833 'defines': [ | 2833 'defines': [ |
2834 '_HAS_EXCEPTIONS=0', | 2834 '_HAS_EXCEPTIONS=0', |
2835 ], | 2835 ], |
2836 }], | 2836 }], |
| 2837 ['component=="shared_library"', { |
| 2838 'msvs_settings': { |
| 2839 'VCLinkerTool': { |
| 2840 'GenerateManifest': 'false', |
| 2841 }, |
| 2842 }, |
| 2843 }], |
2837 ['MSVS_VERSION=="2008"', { | 2844 ['MSVS_VERSION=="2008"', { |
2838 'defines': [ | 2845 'defines': [ |
2839 '_HAS_TR1=0', | 2846 '_HAS_TR1=0', |
2840 ], | 2847 ], |
2841 }], | 2848 }], |
2842 ['secure_atl', { | 2849 ['secure_atl', { |
2843 'defines': [ | 2850 'defines': [ |
2844 '_SECURE_ATL', | 2851 '_SECURE_ATL', |
2845 ], | 2852 ], |
2846 }], | 2853 }], |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3062 # settings in target dicts. SYMROOT is a special case, because many other | 3069 # settings in target dicts. SYMROOT is a special case, because many other |
3063 # Xcode variables depend on it, including variables such as | 3070 # Xcode variables depend on it, including variables such as |
3064 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3071 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3065 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3072 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3066 # files to appear (when present) in the UI as actual files and not red | 3073 # files to appear (when present) in the UI as actual files and not red |
3067 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3074 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3068 # and therefore SYMROOT, needs to be set at the project level. | 3075 # and therefore SYMROOT, needs to be set at the project level. |
3069 'SYMROOT': '<(DEPTH)/xcodebuild', | 3076 'SYMROOT': '<(DEPTH)/xcodebuild', |
3070 }, | 3077 }, |
3071 } | 3078 } |
OLD | NEW |