summaryrefslogtreecommitdiff
path: root/deps/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp')
-rw-r--r--deps/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp29
1 files changed, 0 insertions, 29 deletions
diff --git a/deps/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp b/deps/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp
deleted file mode 100644
index 6837c77326..0000000000
--- a/deps/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright (c) 2014 Google Inc. All rights reserved.
-# Use of this source code is governed by a BSD-style licence that can be
-# found in the LICENSE file.
-
-{
- 'variables': {
- 'custom_ld_target%': '',
- 'custom_ld_host%': '',
- },
- 'conditions': [
- ['"<(custom_ld_target)"!=""', {
- 'make_global_settings': [
- ['LD', '<(custom_ld_target)'],
- ],
- }],
- ['"<(custom_ld_host)"!=""', {
- 'make_global_settings': [
- ['LD.host', '<(custom_ld_host)'],
- ],
- }],
- ],
- 'targets': [
- {
- 'target_name': 'make_global_settings_ld_test',
- 'type': 'static_library',
- 'sources': [ 'foo.c' ],
- },
- ],
-}