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 1771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1782 # Generates debug info when win_z7=1 | 1782 # Generates debug info when win_z7=1 |
1783 # even if fastbuild=1 (that makes GenerateDebugInformation false). | 1783 # even if fastbuild=1 (that makes GenerateDebugInformation false). |
1784 'VCLinkerTool': { | 1784 'VCLinkerTool': { |
1785 'GenerateDebugInformation': 'true', | 1785 'GenerateDebugInformation': 'true', |
1786 }, | 1786 }, |
1787 'VCCLCompilerTool': { | 1787 'VCCLCompilerTool': { |
1788 'DebugInformationFormat': '1', | 1788 'DebugInformationFormat': '1', |
1789 } | 1789 } |
1790 } | 1790 } |
1791 }], | 1791 }], |
| 1792 ['"<(GENERATOR)"=="msvs"', { |
| 1793 'msvs_settings': { |
| 1794 'VCLinkerTool': { |
| 1795 # Make the pdb name sane. Otherwise foo.exe and foo.dll both |
| 1796 # have foo.pdb. The ninja generator already defaults to this and |
| 1797 # can't handle the $(TargetPath) macro. |
| 1798 'ProgramDatabaseFile': '$(TargetPath).pdb', |
| 1799 } |
| 1800 }, |
| 1801 }], |
1792 ], # win_z7!=0 | 1802 ], # win_z7!=0 |
1793 }], # OS==win | 1803 }], # OS==win |
1794 ['enable_task_manager==1', { | 1804 ['enable_task_manager==1', { |
1795 'defines': [ | 1805 'defines': [ |
1796 'ENABLE_TASK_MANAGER=1', | 1806 'ENABLE_TASK_MANAGER=1', |
1797 ], | 1807 ], |
1798 }], | 1808 }], |
1799 ['enable_web_intents==1', { | 1809 ['enable_web_intents==1', { |
1800 'defines': [ | 1810 'defines': [ |
1801 'ENABLE_WEB_INTENTS=1', | 1811 'ENABLE_WEB_INTENTS=1', |
(...skipping 1972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3774 # settings in target dicts. SYMROOT is a special case, because many other | 3784 # settings in target dicts. SYMROOT is a special case, because many other |
3775 # Xcode variables depend on it, including variables such as | 3785 # Xcode variables depend on it, including variables such as |
3776 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3786 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3777 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3787 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3778 # files to appear (when present) in the UI as actual files and not red | 3788 # files to appear (when present) in the UI as actual files and not red |
3779 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3789 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3780 # and therefore SYMROOT, needs to be set at the project level. | 3790 # and therefore SYMROOT, needs to be set at the project level. |
3781 'SYMROOT': '<(DEPTH)/xcodebuild', | 3791 'SYMROOT': '<(DEPTH)/xcodebuild', |
3782 }, | 3792 }, |
3783 } | 3793 } |
OLD | NEW |