diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /media/webrtc/trunk/tools/gyp/test/win/importlib | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'media/webrtc/trunk/tools/gyp/test/win/importlib')
5 files changed, 74 insertions, 0 deletions
diff --git a/media/webrtc/trunk/tools/gyp/test/win/importlib/dll_no_exports.cc b/media/webrtc/trunk/tools/gyp/test/win/importlib/dll_no_exports.cc new file mode 100644 index 000000000..96dd7970b --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/win/importlib/dll_no_exports.cc @@ -0,0 +1,9 @@ +// Copyright (c) 2015 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 <windows.h> + +BOOL APIENTRY DllMain(HMODULE module, DWORD reason, LPVOID reserved) { + return TRUE; +} diff --git a/media/webrtc/trunk/tools/gyp/test/win/importlib/has-exports.cc b/media/webrtc/trunk/tools/gyp/test/win/importlib/has-exports.cc new file mode 100644 index 000000000..3f62d6c60 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/win/importlib/has-exports.cc @@ -0,0 +1,10 @@ +// 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. + +__declspec(dllexport) void some_function() { +} + +int main() { + return 0; +} diff --git a/media/webrtc/trunk/tools/gyp/test/win/importlib/hello.cc b/media/webrtc/trunk/tools/gyp/test/win/importlib/hello.cc new file mode 100644 index 000000000..66ff68c11 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/win/importlib/hello.cc @@ -0,0 +1,9 @@ +// 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. + +__declspec(dllimport) void some_function(); + +int main() { + some_function(); +} diff --git a/media/webrtc/trunk/tools/gyp/test/win/importlib/importlib.gyp b/media/webrtc/trunk/tools/gyp/test/win/importlib/importlib.gyp new file mode 100644 index 000000000..ab15b1893 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/win/importlib/importlib.gyp @@ -0,0 +1,30 @@ +# 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_importlib', + 'type': 'shared_library', + 'msvs_settings': { + 'VCLinkerTool': { + 'LinkIncremental': '2', + } + }, + 'sources': ['has-exports.cc'], + }, + + { + 'target_name': 'test_linkagainst', + 'type': 'executable', + 'dependencies': ['test_importlib'], + 'msvs_settings': { + 'VCLinkerTool': { + 'LinkIncremental': '2', + } + }, + 'sources': ['hello.cc'], + }, + ] +} diff --git a/media/webrtc/trunk/tools/gyp/test/win/importlib/noimplib.gyp b/media/webrtc/trunk/tools/gyp/test/win/importlib/noimplib.gyp new file mode 100644 index 000000000..0245058a9 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/win/importlib/noimplib.gyp @@ -0,0 +1,16 @@ +# Copyright (c) 2015 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': 'no_import_library', + 'type': 'loadable_module', + 'msvs_settings': { + 'NoImportLibrary': 'true', + }, + 'sources': ['dll_no_exports.cc'], + }, + ] +} |