Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions libcef/libcef.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
{
'target_name': 'libcef_library_wrapper',
'type': 'static_library',

'toolsets': ['host', 'target'],

'variables':
{
Expand All @@ -17,16 +19,22 @@
},

# OSX, Windows and Linux only
'conditions':
'target_conditions':
[
[
'OS != "mac" and OS != "win" and OS != "linux"',
'not toolset_os in ("mac", "win", "linux")',
{
'type': 'none',
},
],
[
'OS == "win"',
'toolset_os == "linux" and not toolset_arch in ("x86", "x86_64")',
{
'type': 'none',
},
],
[
'toolset_os == "win"',
{
'defines':
[
Expand Down Expand Up @@ -262,17 +270,19 @@
'target_name': 'libcef_stubs',
'type': 'static_library',

'toolsets': ['host', 'target'],

'variables':
{
'library_for_module': 1,
'silence_warnings': 1,
},

# OSX, Windows and Linux only
'conditions':
'target_conditions':
[
[
'OS != "mac" and OS != "win" and OS != "linux"',
'not toolset_os in ("mac", "win", "linux")',
{
'type': 'none',
},
Expand Down
6 changes: 4 additions & 2 deletions libexpat/libexpat.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
{
'target_name': 'libexpat',
'type': 'static_library',

'toolsets': ['host', 'target'],

'variables':
{
Expand Down Expand Up @@ -58,10 +60,10 @@
],
},

'conditions':
'target_conditions':
[
[
'OS != "android"',
'toolset_os != "android"',
{
'type': 'none',
},
Expand Down
Loading