Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 16f00ad

Browse files
authored
Merge pull request #118 from livecode/merge-develop_9.0-24.07.18
Merge develop 9.0 24.07.18
2 parents 9081b8b + 624144a commit 16f00ad

File tree

15 files changed

+1251
-187
lines changed

15 files changed

+1251
-187
lines changed

libcef/libcef.gyp

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
{
1010
'target_name': 'libcef_library_wrapper',
1111
'type': 'static_library',
12+
13+
'toolsets': ['host', 'target'],
1214

1315
'variables':
1416
{
@@ -17,16 +19,22 @@
1719
},
1820

1921
# OSX, Windows and Linux only
20-
'conditions':
22+
'target_conditions':
2123
[
2224
[
23-
'OS != "mac" and OS != "win" and OS != "linux"',
25+
'not toolset_os in ("mac", "win", "linux")',
2426
{
2527
'type': 'none',
2628
},
2729
],
2830
[
29-
'OS == "win"',
31+
'toolset_os == "linux" and not toolset_arch in ("x86", "x86_64")',
32+
{
33+
'type': 'none',
34+
},
35+
],
36+
[
37+
'toolset_os == "win"',
3038
{
3139
'defines':
3240
[
@@ -262,17 +270,19 @@
262270
'target_name': 'libcef_stubs',
263271
'type': 'static_library',
264272

273+
'toolsets': ['host', 'target'],
274+
265275
'variables':
266276
{
267277
'library_for_module': 1,
268278
'silence_warnings': 1,
269279
},
270280

271281
# OSX, Windows and Linux only
272-
'conditions':
282+
'target_conditions':
273283
[
274284
[
275-
'OS != "mac" and OS != "win" and OS != "linux"',
285+
'not toolset_os in ("mac", "win", "linux")',
276286
{
277287
'type': 'none',
278288
},

libexpat/libexpat.gyp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
{
1010
'target_name': 'libexpat',
1111
'type': 'static_library',
12+
13+
'toolsets': ['host', 'target'],
1214

1315
'variables':
1416
{
@@ -58,10 +60,10 @@
5860
],
5961
},
6062

61-
'conditions':
63+
'target_conditions':
6264
[
6365
[
64-
'OS != "android"',
66+
'toolset_os != "android"',
6567
{
6668
'type': 'none',
6769
},

0 commit comments

Comments
 (0)