| 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 2824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2835 # SubSystem values: | 2835 # SubSystem values: |
| 2836 # 0 == not set | 2836 # 0 == not set |
| 2837 # 1 == /SUBSYSTEM:CONSOLE | 2837 # 1 == /SUBSYSTEM:CONSOLE |
| 2838 # 2 == /SUBSYSTEM:WINDOWS | 2838 # 2 == /SUBSYSTEM:WINDOWS |
| 2839 # Most of the executables we'll ever create are tests | 2839 # Most of the executables we'll ever create are tests |
| 2840 # and utilities with console output. | 2840 # and utilities with console output. |
| 2841 'SubSystem': '1', | 2841 'SubSystem': '1', |
| 2842 }, | 2842 }, |
| 2843 'VCMIDLTool': { | 2843 'VCMIDLTool': { |
| 2844 'GenerateStublessProxies': 'true', | 2844 'GenerateStublessProxies': 'true', |
| 2845 'TypeLibraryName': '$(InputName).tlb', | 2845 'TypeLibraryName': '<(RULE_INPUT_NAME).tlb', |
| 2846 'OutputDirectory': '$(IntDir)', | 2846 'OutputDirectory': '<(INTERMEDIATE_DIR)', |
| 2847 'HeaderFileName': '$(InputName).h', | 2847 'HeaderFileName': '<(RULE_INPUT_NAME).h', |
| 2848 'DLLDataFileName': 'dlldata.c', | 2848 'DLLDataFileName': '<(RULE_INPUT_NAME).dlldata.c', |
| 2849 'InterfaceIdentifierFileName': '$(InputName)_i.c', | 2849 'InterfaceIdentifierFileName': '<(RULE_INPUT_NAME)_i.c', |
| 2850 'ProxyFileName': '$(InputName)_p.c', | 2850 'ProxyFileName': '<(RULE_INPUT_NAME)_p.c', |
| 2851 }, | 2851 }, |
| 2852 'VCResourceCompilerTool': { | 2852 'VCResourceCompilerTool': { |
| 2853 'Culture' : '1033', | 2853 'Culture' : '1033', |
| 2854 'AdditionalIncludeDirectories': [ | 2854 'AdditionalIncludeDirectories': [ |
| 2855 '<(DEPTH)', | 2855 '<(DEPTH)', |
| 2856 '<(SHARED_INTERMEDIATE_DIR)', | 2856 '<(SHARED_INTERMEDIATE_DIR)', |
| 2857 ], | 2857 ], |
| 2858 }, | 2858 }, |
| 2859 }, | 2859 }, |
| 2860 }, | 2860 }, |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2957 # settings in target dicts. SYMROOT is a special case, because many other | 2957 # settings in target dicts. SYMROOT is a special case, because many other |
| 2958 # Xcode variables depend on it, including variables such as | 2958 # Xcode variables depend on it, including variables such as |
| 2959 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2959 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 2960 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2960 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 2961 # files to appear (when present) in the UI as actual files and not red | 2961 # files to appear (when present) in the UI as actual files and not red |
| 2962 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2962 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 2963 # and therefore SYMROOT, needs to be set at the project level. | 2963 # and therefore SYMROOT, needs to be set at the project level. |
| 2964 'SYMROOT': '<(DEPTH)/xcodebuild', | 2964 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 2965 }, | 2965 }, |
| 2966 } | 2966 } |
| OLD | NEW |