summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/linker-flags/enable-uac.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/win/linker-flags/enable-uac.gyp')
-rw-r--r--deps/gyp/test/win/linker-flags/enable-uac.gyp45
1 files changed, 0 insertions, 45 deletions
diff --git a/deps/gyp/test/win/linker-flags/enable-uac.gyp b/deps/gyp/test/win/linker-flags/enable-uac.gyp
deleted file mode 100644
index 4e58c86ec8..0000000000
--- a/deps/gyp/test/win/linker-flags/enable-uac.gyp
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 2013 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': 'enable_uac',
- 'type': 'executable',
- 'sources': ['hello.cc'],
- 'msvs_settings': {
- 'VCManifestTool': {
- 'EmbedManifest': 'true',
- }
- },
- },
- {
- 'target_name': 'enable_uac_no',
- 'type': 'executable',
- 'sources': ['hello.cc'],
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'EnableUAC': 'false',
- },
- 'VCManifestTool': {
- 'EmbedManifest': 'true',
- }
- },
- },
- {
- 'target_name': 'enable_uac_admin',
- 'type': 'executable',
- 'sources': ['hello.cc'],
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'UACExecutionLevel': 2,
- 'UACUIAccess': 'true',
- },
- 'VCManifestTool': {
- 'EmbedManifest': 'true',
- }
- },
- },
- ]
-}