summaryrefslogtreecommitdiff
path: root/tools/gyp/test/win/linker-flags/delay-load-dlls.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gyp/test/win/linker-flags/delay-load-dlls.gyp')
-rw-r--r--tools/gyp/test/win/linker-flags/delay-load-dlls.gyp35
1 files changed, 0 insertions, 35 deletions
diff --git a/tools/gyp/test/win/linker-flags/delay-load-dlls.gyp b/tools/gyp/test/win/linker-flags/delay-load-dlls.gyp
deleted file mode 100644
index 671cbaa802..0000000000
--- a/tools/gyp/test/win/linker-flags/delay-load-dlls.gyp
+++ /dev/null
@@ -1,35 +0,0 @@
-# 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_dld_none',
- 'type': 'executable',
- 'msvs_settings': {
- 'VCLinkerTool': {
- }
- },
- 'sources': ['delay-load.cc'],
- 'libraries': [
- 'delayimp.lib',
- 'shell32.lib',
- ],
- },
- {
- 'target_name': 'test_dld_shell32',
- 'type': 'executable',
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'DelayLoadDLLs': ['shell32.dll']
- }
- },
- 'sources': ['delay-load.cc'],
- 'libraries': [
- 'delayimp.lib',
- 'shell32.lib',
- ],
- },
- ]
-}