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

Unified Diff: test/win/linker_flags/library-directories.gyp

Issue 9460049: Next level of changes to get more of Chrome building (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: wip Created 8 years, 9 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 | « test/win/linker_flags/incremental.gyp ('k') | test/win/linker_flags/ltcg.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/linker_flags/library-directories.gyp
diff --git a/test/win/linker_flags/library-directories.gyp b/test/win/linker_flags/library-directories.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..df426b305212e0fed822091e359780fa320dc225
--- /dev/null
+++ b/test/win/linker_flags/library-directories.gyp
@@ -0,0 +1,49 @@
+# Copyright (c) 2012 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'test_libdirs_none',
+ 'product_name': 'test_libdirs_none',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ }
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ {
+ 'target_name': 'test_libdirs_empty',
+ 'product_name': 'test_libdirs_empty',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalLibraryDirectories': []
+ }
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ {
+ 'target_name': 'test_libdirs_few',
+ 'product_name': 'test_libdirs_few',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalLibraryDirectories': [
+ '<(DEPTH)/third_party/directxsdk/files/Lib/x86',
+ '<(DEPTH)/third_party/platformsdk_win7/files/Lib',
+ ]
+ }
+ },
+ 'sources': [
+ 'hello.cc'
+ ]
+ },
+ ]
+}
« no previous file with comments | « test/win/linker_flags/incremental.gyp ('k') | test/win/linker_flags/ltcg.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698