OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 1543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1554 'VCLinkerTool': { | 1554 'VCLinkerTool': { |
1555 'AdditionalDependencies': [ | 1555 'AdditionalDependencies': [ |
1556 'wininet.lib', | 1556 'wininet.lib', |
1557 'dnsapi.lib', | 1557 'dnsapi.lib', |
1558 'version.lib', | 1558 'version.lib', |
1559 'msimg32.lib', | 1559 'msimg32.lib', |
1560 'ws2_32.lib', | 1560 'ws2_32.lib', |
1561 'usp10.lib', | 1561 'usp10.lib', |
1562 'psapi.lib', | 1562 'psapi.lib', |
1563 'dbghelp.lib', | 1563 'dbghelp.lib', |
| 1564 'winmm.lib', |
| 1565 'shlwapi.lib', |
1564 ], | 1566 ], |
1565 'conditions': [ | 1567 'conditions': [ |
1566 ['msvs_express', { | 1568 ['msvs_express', { |
1567 # Explicitly required when using the ATL with express | 1569 # Explicitly required when using the ATL with express |
1568 'AdditionalDependencies': [ | 1570 'AdditionalDependencies': [ |
1569 'atlthunk.lib', | 1571 'atlthunk.lib', |
1570 ], | 1572 ], |
1571 }], | 1573 }], |
1572 ['MSVS_VERSION=="2005e"', { | 1574 ['MSVS_VERSION=="2005e"', { |
1573 # Non-express versions link automatically to these | 1575 # Non-express versions link automatically to these |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1697 # and therefore SYMROOT, needs to be set at the project level. | 1699 # and therefore SYMROOT, needs to be set at the project level. |
1698 'SYMROOT': '<(DEPTH)/xcodebuild', | 1700 'SYMROOT': '<(DEPTH)/xcodebuild', |
1699 }, | 1701 }, |
1700 } | 1702 } |
1701 | 1703 |
1702 # Local Variables: | 1704 # Local Variables: |
1703 # tab-width:2 | 1705 # tab-width:2 |
1704 # indent-tabs-mode:nil | 1706 # indent-tabs-mode:nil |
1705 # End: | 1707 # End: |
1706 # vim: set expandtab tabstop=2 shiftwidth=2: | 1708 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |