summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/idl-rules
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/win/idl-rules')
-rw-r--r--deps/gyp/test/win/idl-rules/Window.idl9
-rw-r--r--deps/gyp/test/win/idl-rules/basic-idl.gyp67
-rw-r--r--deps/gyp/test/win/idl-rules/history_indexer.idl17
-rw-r--r--deps/gyp/test/win/idl-rules/history_indexer_user.cc15
-rw-r--r--deps/gyp/test/win/idl-rules/idl_compiler.py17
5 files changed, 0 insertions, 125 deletions
diff --git a/deps/gyp/test/win/idl-rules/Window.idl b/deps/gyp/test/win/idl-rules/Window.idl
deleted file mode 100644
index d8ea01bee3..0000000000
--- a/deps/gyp/test/win/idl-rules/Window.idl
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright (c) 2014 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.
-
-[
- WillBeGarbageCollected,
-] interface Window {
- void alert();
-};
diff --git a/deps/gyp/test/win/idl-rules/basic-idl.gyp b/deps/gyp/test/win/idl-rules/basic-idl.gyp
deleted file mode 100644
index b74622adea..0000000000
--- a/deps/gyp/test/win/idl-rules/basic-idl.gyp
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'variables': {
- 'midl_out_dir': '<(SHARED_INTERMEDIATE_DIR)',
- },
- 'target_defaults': {
- 'configurations': {
- 'Debug': {
- 'msvs_configuration_platform': 'Win32',
- },
- 'Debug_x64': {
- 'inherit_from': ['Debug'],
- 'msvs_configuration_platform': 'x64',
- },
- },
- },
- 'targets': [
- {
- 'target_name': 'idl_test',
- 'type': 'executable',
- 'sources': [
- 'history_indexer.idl',
- '<(midl_out_dir)/history_indexer.h',
- '<(midl_out_dir)/history_indexer_i.c',
- 'history_indexer_user.cc',
- ],
- 'libraries': ['ole32.lib'],
- 'include_dirs': [
- '<(midl_out_dir)',
- ],
- 'msvs_settings': {
- 'VCMIDLTool': {
- 'OutputDirectory': '<(midl_out_dir)',
- 'HeaderFileName': '<(RULE_INPUT_ROOT).h',
- },
- },
- },
- {
- 'target_name': 'idl_explicit_action',
- 'type': 'none',
- 'sources': [
- 'Window.idl',
- ],
- 'actions': [{
- 'action_name': 'blink_idl',
- 'explicit_idl_action': 1,
- 'msvs_cygwin_shell': 0,
- 'inputs': [
- 'Window.idl',
- 'idl_compiler.py',
- ],
- 'outputs': [
- 'Window.cpp',
- 'Window.h',
- ],
- 'action': [
- 'python',
- 'idl_compiler.py',
- 'Window.idl',
- ],
- }],
- },
- ],
-}
diff --git a/deps/gyp/test/win/idl-rules/history_indexer.idl b/deps/gyp/test/win/idl-rules/history_indexer.idl
deleted file mode 100644
index e866ce6d90..0000000000
--- a/deps/gyp/test/win/idl-rules/history_indexer.idl
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-import "oaidl.idl";
-import "ocidl.idl";
-
-[
- object,
- uuid(9C1100DD-51D4-4827-AE9F-3B8FAC4AED72),
- oleautomation,
- nonextensible,
- pointer_default(unique)
-]
-interface IChromeHistoryIndexer : IUnknown {
- HRESULT SomeFunction([in] VARIANT begin_time, [in] VARIANT end_time);
-};
diff --git a/deps/gyp/test/win/idl-rules/history_indexer_user.cc b/deps/gyp/test/win/idl-rules/history_indexer_user.cc
deleted file mode 100644
index 071a9ffef5..0000000000
--- a/deps/gyp/test/win/idl-rules/history_indexer_user.cc
+++ /dev/null
@@ -1,15 +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.
-
-#include "history_indexer.h"
-
-// Use the thing in the IDL.
-int main() {
- IChromeHistoryIndexer** indexer = 0;
- IID fake_iid;
- CoCreateInstance(fake_iid, NULL, CLSCTX_INPROC,
- __uuidof(IChromeHistoryIndexer),
- reinterpret_cast<void**>(indexer));
- return 0;
-}
diff --git a/deps/gyp/test/win/idl-rules/idl_compiler.py b/deps/gyp/test/win/idl-rules/idl_compiler.py
deleted file mode 100644
index a12b274d67..0000000000
--- a/deps/gyp/test/win/idl-rules/idl_compiler.py
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (c) 2014 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.
-
-# mock, just outputs empty .h/.cpp files
-
-import os
-import sys
-
-if len(sys.argv) == 2:
- basename, ext = os.path.splitext(sys.argv[1])
- with open('%s.h' % basename, 'w') as f:
- f.write('// %s.h\n' % basename)
- with open('%s.cpp' % basename, 'w') as f:
- f.write('// %s.cpp\n' % basename)