Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8712)

Unified Diff: chrome/chrome_tests.gypi

Issue 10824100: Fix LINK(DLL) _pyautolib.pyd (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use <(DEPTH) instead of .. Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_tests.gypi
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi
index 8a5137dcbefa415cc6451db41867594671e242f6..6c63d160cce87d28c6fe1b4ed6c4e2988e45ce49 100644
--- a/chrome/chrome_tests.gypi
+++ b/chrome/chrome_tests.gypi
@@ -4314,10 +4314,15 @@
'..',
'../third_party/python_26/include',
],
- 'link_settings': {
- 'libraries': [
- '../third_party/python_26/libs/python26.lib',
- ],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalLibraryDirectories': [
+ '<(DEPTH)/third_party/python_26/libs',
+ ],
+ 'AdditionalDependencies': [
+ 'python26.lib',
+ ],
+ },
}
}],
['clang == 1', {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698