Reorder Electron OpenSSL dependency (#1636)

* Reorder Electron OpenSSL dependency

* changelog
This commit is contained in:
Yavor Georgiev 2018-01-25 13:26:44 +01:00 committed by GitHub
parent ac82bd285d
commit ae8e50fc36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -8,6 +8,7 @@ X.Y.Z Release notes
### Bug fixes ### Bug fixes
* [Object Server] Fixed a typing error leading to `_getExistingUser` wasn't defined in the Chrome debugging support library (#1625). * [Object Server] Fixed a typing error leading to `_getExistingUser` wasn't defined in the Chrome debugging support library (#1625).
* [Electron] Fixed a `dlopen` error related to OpenSSL that prevented using realm-js on Linux (#1636).
### Internal ### Internal
* None. * None.

View File

@ -44,6 +44,11 @@
], ],
"include_dirs": [ "include_dirs": [
"src" "src"
],
"conditions": [
["runtime=='electron'", {
"dependencies": [ "OpenSSL" ]
}]
] ]
}, },
{ {

View File

@ -190,9 +190,6 @@
} }
}, { }, {
"dependencies": [ "vendored-realm" ] "dependencies": [ "vendored-realm" ]
}],
["runtime=='electron'", {
"dependencies": [ "OpenSSL" ]
}] }]
] ]
}, },
@ -226,9 +223,6 @@
} }
}, { }, {
"dependencies": [ "vendored-realm" ] "dependencies": [ "vendored-realm" ]
}],
["runtime=='electron'", {
"dependencies": [ "OpenSSL" ]
}] }]
], ],
}, },