summaryrefslogtreecommitdiff
path: root/nss/gtests/common/gtest.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'nss/gtests/common/gtest.gypi')
-rw-r--r--nss/gtests/common/gtest.gypi35
1 files changed, 35 insertions, 0 deletions
diff --git a/nss/gtests/common/gtest.gypi b/nss/gtests/common/gtest.gypi
new file mode 100644
index 0000000..c3bac32
--- /dev/null
+++ b/nss/gtests/common/gtest.gypi
@@ -0,0 +1,35 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+{
+ 'includes': [
+ '../../coreconf/config.gypi'
+ ],
+ 'target_defaults': {
+ 'conditions': [
+ ['OS=="win"', {
+ 'libraries': [
+ '-lws2_32',
+ ],
+ }],
+ ['OS=="android"', {
+ 'libraries': [
+ '-lstdc++',
+ ],
+ }],
+ [ 'fuzz==1', {
+ 'defines': [
+ 'UNSAFE_FUZZER_MODE',
+ ],
+ }],
+ ],
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'ExceptionHandling': 1,
+ 'PreprocessorDefinitions': [
+ 'NOMINMAX',
+ ],
+ },
+ },
+ },
+}