| 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'
|
| + ]
|
| + },
|
| + ]
|
| +}
|
|
|