libv8 5.3.332.38.5-x86-linux → 5.7.492.65.0beta1-x86-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/libv8/arch.rb +5 -5
- data/lib/libv8/version.rb +1 -1
- data/vendor/v8/include/libplatform/libplatform-export.h +29 -0
- data/vendor/v8/include/libplatform/libplatform.h +25 -3
- data/vendor/v8/include/libplatform/v8-tracing.h +270 -0
- data/vendor/v8/include/v8-debug.h +43 -51
- data/vendor/v8/include/v8-experimental.h +4 -0
- data/vendor/v8/include/v8-inspector-protocol.h +13 -0
- data/vendor/v8/include/v8-inspector.h +267 -0
- data/vendor/v8/include/v8-platform.h +57 -9
- data/vendor/v8/include/v8-profiler.h +113 -3
- data/vendor/v8/include/v8-version-string.h +33 -0
- data/vendor/v8/include/v8-version.h +3 -3
- data/vendor/v8/include/v8.h +1334 -370
- data/vendor/v8/include/v8config.h +0 -4
- data/vendor/v8/out/ia32.release/libv8_base.a +0 -0
- data/vendor/v8/out/ia32.release/libv8_libbase.a +0 -0
- data/vendor/v8/out/ia32.release/libv8_libplatform.a +0 -0
- data/vendor/v8/out/ia32.release/libv8_libsampler.a +0 -0
- data/vendor/v8/out/ia32.release/libv8_nosnapshot.a +0 -0
- data/vendor/v8/out/ia32.release/libv8_snapshot.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/src/libv8_base.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/src/libv8_libbase.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/src/libv8_libplatform.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/src/libv8_libsampler.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/src/libv8_nosnapshot.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/src/libv8_snapshot.a +0 -0
- metadata +9 -4
@@ -63,7 +63,6 @@
|
|
63
63
|
// V8_OS_FREEBSD - FreeBSD
|
64
64
|
// V8_OS_LINUX - Linux
|
65
65
|
// V8_OS_MACOSX - Mac OS X
|
66
|
-
// V8_OS_NACL - Native Client
|
67
66
|
// V8_OS_NETBSD - NetBSD
|
68
67
|
// V8_OS_OPENBSD - OpenBSD
|
69
68
|
// V8_OS_POSIX - POSIX compatible (mostly everything except Windows)
|
@@ -80,9 +79,6 @@
|
|
80
79
|
# define V8_OS_BSD 1
|
81
80
|
# define V8_OS_MACOSX 1
|
82
81
|
# define V8_OS_POSIX 1
|
83
|
-
#elif defined(__native_client__)
|
84
|
-
# define V8_OS_NACL 1
|
85
|
-
# define V8_OS_POSIX 1
|
86
82
|
#elif defined(__CYGWIN__)
|
87
83
|
# define V8_OS_CYGWIN 1
|
88
84
|
# define V8_OS_POSIX 1
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libv8
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.7.492.65.0beta1
|
5
5
|
platform: x86-linux
|
6
6
|
authors:
|
7
7
|
- Charles Lowell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-03-
|
11
|
+
date: 2017-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- ext/libv8/paths.rb
|
67
67
|
- lib/libv8.rb
|
68
68
|
- lib/libv8/version.rb
|
69
|
+
- vendor/v8/include/libplatform/libplatform-export.h
|
69
70
|
- vendor/v8/include/libplatform/libplatform.h
|
71
|
+
- vendor/v8/include/libplatform/v8-tracing.h
|
70
72
|
- vendor/v8/include/v8-debug.h
|
71
73
|
- vendor/v8/include/v8-experimental.h
|
74
|
+
- vendor/v8/include/v8-inspector-protocol.h
|
75
|
+
- vendor/v8/include/v8-inspector.h
|
72
76
|
- vendor/v8/include/v8-platform.h
|
73
77
|
- vendor/v8/include/v8-profiler.h
|
74
78
|
- vendor/v8/include/v8-testing.h
|
75
79
|
- vendor/v8/include/v8-util.h
|
80
|
+
- vendor/v8/include/v8-version-string.h
|
76
81
|
- vendor/v8/include/v8-version.h
|
77
82
|
- vendor/v8/include/v8.h
|
78
83
|
- vendor/v8/include/v8config.h
|
@@ -104,9 +109,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
109
|
version: '0'
|
105
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
111
|
requirements:
|
107
|
-
- - "
|
112
|
+
- - ">"
|
108
113
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
114
|
+
version: 1.3.1
|
110
115
|
requirements: []
|
111
116
|
rubyforge_project: libv8
|
112
117
|
rubygems_version: 2.5.2
|