| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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': { | 9 'variables': { |
| 10 # .gyp files or targets should set chromium_code to 1 if they build | 10 # .gyp files or targets should set chromium_code to 1 if they build |
| (...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 'VCLibrarianTool': { | 1341 'VCLibrarianTool': { |
| 1342 'AdditionalOptions': ['/ignore:4221'], | 1342 'AdditionalOptions': ['/ignore:4221'], |
| 1343 'AdditionalLibraryDirectories': [ | 1343 'AdditionalLibraryDirectories': [ |
| 1344 '<(DEPTH)/third_party/platformsdk_win7/files/Lib', | 1344 '<(DEPTH)/third_party/platformsdk_win7/files/Lib', |
| 1345 '<(DEPTH)/third_party/directxsdk/files/Lib/x86', | 1345 '<(DEPTH)/third_party/directxsdk/files/Lib/x86', |
| 1346 ], | 1346 ], |
| 1347 }, | 1347 }, |
| 1348 'VCLinkerTool': { | 1348 'VCLinkerTool': { |
| 1349 'AdditionalDependencies': [ | 1349 'AdditionalDependencies': [ |
| 1350 'wininet.lib', | 1350 'wininet.lib', |
| 1351 'dnsapi.lib', |
| 1351 'version.lib', | 1352 'version.lib', |
| 1352 'msimg32.lib', | 1353 'msimg32.lib', |
| 1353 'ws2_32.lib', | 1354 'ws2_32.lib', |
| 1354 'usp10.lib', | 1355 'usp10.lib', |
| 1355 'psapi.lib', | 1356 'psapi.lib', |
| 1356 'dbghelp.lib', | 1357 'dbghelp.lib', |
| 1357 ], | 1358 ], |
| 1358 'AdditionalLibraryDirectories': [ | 1359 'AdditionalLibraryDirectories': [ |
| 1359 '<(DEPTH)/third_party/platformsdk_win7/files/Lib', | 1360 '<(DEPTH)/third_party/platformsdk_win7/files/Lib', |
| 1360 '<(DEPTH)/third_party/directxsdk/files/Lib/x86', | 1361 '<(DEPTH)/third_party/directxsdk/files/Lib/x86', |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1471 # and therefore SYMROOT, needs to be set at the project level. | 1472 # and therefore SYMROOT, needs to be set at the project level. |
| 1472 'SYMROOT': '<(DEPTH)/xcodebuild', | 1473 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1473 }, | 1474 }, |
| 1474 } | 1475 } |
| 1475 | 1476 |
| 1476 # Local Variables: | 1477 # Local Variables: |
| 1477 # tab-width:2 | 1478 # tab-width:2 |
| 1478 # indent-tabs-mode:nil | 1479 # indent-tabs-mode:nil |
| 1479 # End: | 1480 # End: |
| 1480 # vim: set expandtab tabstop=2 shiftwidth=2: | 1481 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |