sandbox 0.8.6 → 1.0.0-beta.1

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.
package/build/Makefile DELETED
@@ -1,350 +0,0 @@
1
- # We borrow heavily from the kernel build setup, though we are simpler since
2
- # we don't have Kconfig tweaking settings on us.
3
-
4
- # The implicit make rules have it looking for RCS files, among other things.
5
- # We instead explicitly write all the rules we care about.
6
- # It's even quicker (saves ~200ms) to pass -r on the command line.
7
- MAKEFLAGS=-r
8
-
9
- # The source directory tree.
10
- srcdir := ..
11
- abs_srcdir := $(abspath $(srcdir))
12
-
13
- # The name of the builddir.
14
- builddir_name ?= .
15
-
16
- # The V=1 flag on command line makes us verbosely print command lines.
17
- ifdef V
18
- quiet=
19
- else
20
- quiet=quiet_
21
- endif
22
-
23
- # Specify BUILDTYPE=Release on the command line for a release build.
24
- BUILDTYPE ?= Release
25
-
26
- # Directory all our build output goes into.
27
- # Note that this must be two directories beneath src/ for unit tests to pass,
28
- # as they reach into the src/ directory for data with relative paths.
29
- builddir ?= $(builddir_name)/$(BUILDTYPE)
30
- abs_builddir := $(abspath $(builddir))
31
- depsdir := $(builddir)/.deps
32
-
33
- # Object output directory.
34
- obj := $(builddir)/obj
35
- abs_obj := $(abspath $(obj))
36
-
37
- # We build up a list of every single one of the targets so we can slurp in the
38
- # generated dependency rule Makefiles in one pass.
39
- all_deps :=
40
-
41
-
42
-
43
- CC.target ?= $(CC)
44
- CFLAGS.target ?= $(CFLAGS)
45
- CXX.target ?= $(CXX)
46
- CXXFLAGS.target ?= $(CXXFLAGS)
47
- LINK.target ?= $(LINK)
48
- LDFLAGS.target ?= $(LDFLAGS)
49
- AR.target ?= $(AR)
50
-
51
- # C++ apps need to be linked with g++.
52
- #
53
- # Note: flock is used to seralize linking. Linking is a memory-intensive
54
- # process so running parallel links can often lead to thrashing. To disable
55
- # the serialization, override LINK via an envrionment variable as follows:
56
- #
57
- # export LINK=g++
58
- #
59
- # This will allow make to invoke N linker processes as specified in -jN.
60
- LINK ?= ./gyp-mac-tool flock $(builddir)/linker.lock $(CXX.target)
61
-
62
- # TODO(evan): move all cross-compilation logic to gyp-time so we don't need
63
- # to replicate this environment fallback in make as well.
64
- CC.host ?= gcc
65
- CFLAGS.host ?=
66
- CXX.host ?= g++
67
- CXXFLAGS.host ?=
68
- LINK.host ?= $(CXX.host)
69
- LDFLAGS.host ?=
70
- AR.host ?= ar
71
-
72
- # Define a dir function that can handle spaces.
73
- # http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions
74
- # "leading spaces cannot appear in the text of the first argument as written.
75
- # These characters can be put into the argument value by variable substitution."
76
- empty :=
77
- space := $(empty) $(empty)
78
-
79
- # http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces
80
- replace_spaces = $(subst $(space),?,$1)
81
- unreplace_spaces = $(subst ?,$(space),$1)
82
- dirx = $(call unreplace_spaces,$(dir $(call replace_spaces,$1)))
83
-
84
- # Flags to make gcc output dependency info. Note that you need to be
85
- # careful here to use the flags that ccache and distcc can understand.
86
- # We write to a dep file on the side first and then rename at the end
87
- # so we can't end up with a broken dep file.
88
- depfile = $(depsdir)/$(call replace_spaces,$@).d
89
- DEPFLAGS = -MMD -MF $(depfile).raw
90
-
91
- # We have to fixup the deps output in a few ways.
92
- # (1) the file output should mention the proper .o file.
93
- # ccache or distcc lose the path to the target, so we convert a rule of
94
- # the form:
95
- # foobar.o: DEP1 DEP2
96
- # into
97
- # path/to/foobar.o: DEP1 DEP2
98
- # (2) we want missing files not to cause us to fail to build.
99
- # We want to rewrite
100
- # foobar.o: DEP1 DEP2 \
101
- # DEP3
102
- # to
103
- # DEP1:
104
- # DEP2:
105
- # DEP3:
106
- # so if the files are missing, they're just considered phony rules.
107
- # We have to do some pretty insane escaping to get those backslashes
108
- # and dollar signs past make, the shell, and sed at the same time.
109
- # Doesn't work with spaces, but that's fine: .d files have spaces in
110
- # their names replaced with other characters.
111
- define fixup_dep
112
- # The depfile may not exist if the input file didn't have any #includes.
113
- touch $(depfile).raw
114
- # Fixup path as in (1).
115
- sed -e "s|^$(notdir $@)|$@|" $(depfile).raw >> $(depfile)
116
- # Add extra rules as in (2).
117
- # We remove slashes and replace spaces with new lines;
118
- # remove blank lines;
119
- # delete the first line and append a colon to the remaining lines.
120
- sed -e 's|\\||' -e 'y| |\n|' $(depfile).raw |\
121
- grep -v '^$$' |\
122
- sed -e 1d -e 's|$$|:|' \
123
- >> $(depfile)
124
- rm $(depfile).raw
125
- endef
126
-
127
- # Command definitions:
128
- # - cmd_foo is the actual command to run;
129
- # - quiet_cmd_foo is the brief-output summary of the command.
130
-
131
- quiet_cmd_cc = CC($(TOOLSET)) $@
132
- cmd_cc = $(CC.$(TOOLSET)) $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c -o $@ $<
133
-
134
- quiet_cmd_cxx = CXX($(TOOLSET)) $@
135
- cmd_cxx = $(CXX.$(TOOLSET)) $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
136
-
137
- quiet_cmd_objc = CXX($(TOOLSET)) $@
138
- cmd_objc = $(CC.$(TOOLSET)) $(GYP_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
139
-
140
- quiet_cmd_objcxx = CXX($(TOOLSET)) $@
141
- cmd_objcxx = $(CXX.$(TOOLSET)) $(GYP_OBJCXXFLAGS) $(DEPFLAGS) -c -o $@ $<
142
-
143
- # Commands for precompiled header files.
144
- quiet_cmd_pch_c = CXX($(TOOLSET)) $@
145
- cmd_pch_c = $(CC.$(TOOLSET)) $(GYP_PCH_CFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
146
- quiet_cmd_pch_cc = CXX($(TOOLSET)) $@
147
- cmd_pch_cc = $(CC.$(TOOLSET)) $(GYP_PCH_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
148
- quiet_cmd_pch_m = CXX($(TOOLSET)) $@
149
- cmd_pch_m = $(CC.$(TOOLSET)) $(GYP_PCH_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
150
- quiet_cmd_pch_mm = CXX($(TOOLSET)) $@
151
- cmd_pch_mm = $(CC.$(TOOLSET)) $(GYP_PCH_OBJCXXFLAGS) $(DEPFLAGS) -c -o $@ $<
152
-
153
- # gyp-mac-tool is written next to the root Makefile by gyp.
154
- # Use $(4) for the command, since $(2) and $(3) are used as flag by do_cmd
155
- # already.
156
- quiet_cmd_mac_tool = MACTOOL $(4) $<
157
- cmd_mac_tool = ./gyp-mac-tool $(4) $< "$@"
158
-
159
- quiet_cmd_mac_package_framework = PACKAGE FRAMEWORK $@
160
- cmd_mac_package_framework = ./gyp-mac-tool package-framework "$@" $(4)
161
-
162
- quiet_cmd_infoplist = INFOPLIST $@
163
- cmd_infoplist = $(CC.$(TOOLSET)) -E -P -Wno-trigraphs -x c $(INFOPLIST_DEFINES) "$<" -o "$@"
164
-
165
- quiet_cmd_touch = TOUCH $@
166
- cmd_touch = touch $@
167
-
168
- quiet_cmd_copy = COPY $@
169
- # send stderr to /dev/null to ignore messages when linking directories.
170
- cmd_copy = rm -rf "$@" && cp -af "$<" "$@"
171
-
172
- quiet_cmd_alink = LIBTOOL-STATIC $@
173
- cmd_alink = rm -f $@ && ./gyp-mac-tool filter-libtool libtool $(GYP_LIBTOOLFLAGS) -static -o $@ $(filter %.o,$^)
174
-
175
- quiet_cmd_link = LINK($(TOOLSET)) $@
176
- cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
177
-
178
- quiet_cmd_solink = SOLINK($(TOOLSET)) $@
179
- cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
180
-
181
- quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
182
- cmd_solink_module = $(LINK.$(TOOLSET)) -bundle $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(filter-out FORCE_DO_CMD, $^) $(LIBS)
183
-
184
-
185
- # Define an escape_quotes function to escape single quotes.
186
- # This allows us to handle quotes properly as long as we always use
187
- # use single quotes and escape_quotes.
188
- escape_quotes = $(subst ','\'',$(1))
189
- # This comment is here just to include a ' to unconfuse syntax highlighting.
190
- # Define an escape_vars function to escape '$' variable syntax.
191
- # This allows us to read/write command lines with shell variables (e.g.
192
- # $LD_LIBRARY_PATH), without triggering make substitution.
193
- escape_vars = $(subst $$,$$$$,$(1))
194
- # Helper that expands to a shell command to echo a string exactly as it is in
195
- # make. This uses printf instead of echo because printf's behaviour with respect
196
- # to escape sequences is more portable than echo's across different shells
197
- # (e.g., dash, bash).
198
- exact_echo = printf '%s\n' '$(call escape_quotes,$(1))'
199
-
200
- # Helper to compare the command we're about to run against the command
201
- # we logged the last time we ran the command. Produces an empty
202
- # string (false) when the commands match.
203
- # Tricky point: Make has no string-equality test function.
204
- # The kernel uses the following, but it seems like it would have false
205
- # positives, where one string reordered its arguments.
206
- # arg_check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \
207
- # $(filter-out $(cmd_$@), $(cmd_$(1))))
208
- # We instead substitute each for the empty string into the other, and
209
- # say they're equal if both substitutions produce the empty string.
210
- # .d files contain ? instead of spaces, take that into account.
211
- command_changed = $(or $(subst $(cmd_$(1)),,$(cmd_$(call replace_spaces,$@))),\
212
- $(subst $(cmd_$(call replace_spaces,$@)),,$(cmd_$(1))))
213
-
214
- # Helper that is non-empty when a prerequisite changes.
215
- # Normally make does this implicitly, but we force rules to always run
216
- # so we can check their command lines.
217
- # $? -- new prerequisites
218
- # $| -- order-only dependencies
219
- prereq_changed = $(filter-out FORCE_DO_CMD,$(filter-out $|,$?))
220
-
221
- # Helper that executes all postbuilds until one fails.
222
- define do_postbuilds
223
- @E=0;\
224
- for p in $(POSTBUILDS); do\
225
- eval $$p;\
226
- E=$$?;\
227
- if [ $$E -ne 0 ]; then\
228
- break;\
229
- fi;\
230
- done;\
231
- if [ $$E -ne 0 ]; then\
232
- rm -rf "$@";\
233
- exit $$E;\
234
- fi
235
- endef
236
-
237
- # do_cmd: run a command via the above cmd_foo names, if necessary.
238
- # Should always run for a given target to handle command-line changes.
239
- # Second argument, if non-zero, makes it do asm/C/C++ dependency munging.
240
- # Third argument, if non-zero, makes it do POSTBUILDS processing.
241
- # Note: We intentionally do NOT call dirx for depfile, since it contains ? for
242
- # spaces already and dirx strips the ? characters.
243
- define do_cmd
244
- $(if $(or $(command_changed),$(prereq_changed)),
245
- @$(call exact_echo, $($(quiet)cmd_$(1)))
246
- @mkdir -p "$(call dirx,$@)" "$(dir $(depfile))"
247
- $(if $(findstring flock,$(word 2,$(cmd_$1))),
248
- @$(cmd_$(1))
249
- @echo " $(quiet_cmd_$(1)): Finished",
250
- @$(cmd_$(1))
251
- )
252
- @$(call exact_echo,$(call escape_vars,cmd_$(call replace_spaces,$@) := $(cmd_$(1)))) > $(depfile)
253
- @$(if $(2),$(fixup_dep))
254
- $(if $(and $(3), $(POSTBUILDS)),
255
- $(call do_postbuilds)
256
- )
257
- )
258
- endef
259
-
260
- # Declare the "all" target first so it is the default,
261
- # even though we don't have the deps yet.
262
- .PHONY: all
263
- all:
264
-
265
- # make looks for ways to re-generate included makefiles, but in our case, we
266
- # don't have a direct way. Explicitly telling make that it has nothing to do
267
- # for them makes it go faster.
268
- %.d: ;
269
-
270
- # Use FORCE_DO_CMD to force a target to run. Should be coupled with
271
- # do_cmd.
272
- .PHONY: FORCE_DO_CMD
273
- FORCE_DO_CMD:
274
-
275
- TOOLSET := target
276
- # Suffix rules, putting all outputs into $(obj).
277
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.c FORCE_DO_CMD
278
- @$(call do_cmd,cc,1)
279
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD
280
- @$(call do_cmd,cxx,1)
281
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD
282
- @$(call do_cmd,cxx,1)
283
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD
284
- @$(call do_cmd,cxx,1)
285
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.m FORCE_DO_CMD
286
- @$(call do_cmd,objc,1)
287
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.mm FORCE_DO_CMD
288
- @$(call do_cmd,objcxx,1)
289
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD
290
- @$(call do_cmd,cc,1)
291
- $(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD
292
- @$(call do_cmd,cc,1)
293
-
294
- # Try building from generated source, too.
295
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD
296
- @$(call do_cmd,cc,1)
297
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD
298
- @$(call do_cmd,cxx,1)
299
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD
300
- @$(call do_cmd,cxx,1)
301
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD
302
- @$(call do_cmd,cxx,1)
303
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.m FORCE_DO_CMD
304
- @$(call do_cmd,objc,1)
305
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.mm FORCE_DO_CMD
306
- @$(call do_cmd,objcxx,1)
307
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD
308
- @$(call do_cmd,cc,1)
309
- $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD
310
- @$(call do_cmd,cc,1)
311
-
312
- $(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD
313
- @$(call do_cmd,cc,1)
314
- $(obj).$(TOOLSET)/%.o: $(obj)/%.cc FORCE_DO_CMD
315
- @$(call do_cmd,cxx,1)
316
- $(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD
317
- @$(call do_cmd,cxx,1)
318
- $(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD
319
- @$(call do_cmd,cxx,1)
320
- $(obj).$(TOOLSET)/%.o: $(obj)/%.m FORCE_DO_CMD
321
- @$(call do_cmd,objc,1)
322
- $(obj).$(TOOLSET)/%.o: $(obj)/%.mm FORCE_DO_CMD
323
- @$(call do_cmd,objcxx,1)
324
- $(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD
325
- @$(call do_cmd,cc,1)
326
- $(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD
327
- @$(call do_cmd,cc,1)
328
-
329
-
330
- ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
331
- $(findstring $(join ^,$(prefix)),\
332
- $(join ^,sandbox.target.mk)))),)
333
- include sandbox.target.mk
334
- endif
335
-
336
- quiet_cmd_regen_makefile = ACTION Regenerating $@
337
- cmd_regen_makefile = cd $(srcdir); /usr/local/lib/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "--toplevel-dir=." -I/Users/gianni/Projects/javascript/sandbox/build/config.gypi -I/usr/local/lib/node_modules/node-gyp/addon.gypi -I/Users/gianni/.node-gyp/0.10.28/common.gypi "--depth=." "-Goutput_dir=." "--generator-output=build" "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/Users/gianni/.node-gyp/0.10.28" "-Dmodule_root_dir=/Users/gianni/Projects/javascript/sandbox" binding.gyp
338
- Makefile: $(srcdir)/../../../.node-gyp/0.10.28/common.gypi $(srcdir)/build/config.gypi $(srcdir)/binding.gyp $(srcdir)/../../../../../usr/local/lib/node_modules/node-gyp/addon.gypi
339
- $(call do_cmd,regen_makefile)
340
-
341
- # "all" is a concatenation of the "all" targets from all the included
342
- # sub-makefiles. This is just here to clarify.
343
- all:
344
-
345
- # Add in dependency-tracking rules. $(all_deps) is the list of every single
346
- # target in our tree. Only consider the ones with .d (dependency) info:
347
- d_files := $(wildcard $(foreach f,$(all_deps),$(depsdir)/$(f).d))
348
- ifneq ($(d_files),)
349
- include $(d_files)
350
- endif
@@ -1,20 +0,0 @@
1
- cmd_Release/obj.target/sandbox/src/sandbox.o := c++ '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DBUILDING_NODE_EXTENSION' -I/Users/gianni/.node-gyp/0.10.28/src -I/Users/gianni/.node-gyp/0.10.28/deps/uv/include -I/Users/gianni/.node-gyp/0.10.28/deps/v8/include -Os -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -fno-threadsafe-statics -stdlib=libc++ -MMD -MF ./Release/.deps/Release/obj.target/sandbox/src/sandbox.o.d.raw -c -o Release/obj.target/sandbox/src/sandbox.o ../src/sandbox.cc
2
- Release/obj.target/sandbox/src/sandbox.o: ../src/sandbox.cc \
3
- ../src/sandbox.h /Users/gianni/.node-gyp/0.10.28/deps/v8/include/v8.h \
4
- /Users/gianni/.node-gyp/0.10.28/deps/v8/include/v8stdint.h \
5
- /Users/gianni/.node-gyp/0.10.28/src/node.h \
6
- /Users/gianni/.node-gyp/0.10.28/deps/uv/include/uv.h \
7
- /Users/gianni/.node-gyp/0.10.28/deps/uv/include/uv-private/uv-unix.h \
8
- /Users/gianni/.node-gyp/0.10.28/deps/uv/include/uv-private/ngx-queue.h \
9
- /Users/gianni/.node-gyp/0.10.28/deps/uv/include/uv-private/uv-darwin.h \
10
- /Users/gianni/.node-gyp/0.10.28/src/node_object_wrap.h
11
- ../src/sandbox.cc:
12
- ../src/sandbox.h:
13
- /Users/gianni/.node-gyp/0.10.28/deps/v8/include/v8.h:
14
- /Users/gianni/.node-gyp/0.10.28/deps/v8/include/v8stdint.h:
15
- /Users/gianni/.node-gyp/0.10.28/src/node.h:
16
- /Users/gianni/.node-gyp/0.10.28/deps/uv/include/uv.h:
17
- /Users/gianni/.node-gyp/0.10.28/deps/uv/include/uv-private/uv-unix.h:
18
- /Users/gianni/.node-gyp/0.10.28/deps/uv/include/uv-private/ngx-queue.h:
19
- /Users/gianni/.node-gyp/0.10.28/deps/uv/include/uv-private/uv-darwin.h:
20
- /Users/gianni/.node-gyp/0.10.28/src/node_object_wrap.h:
@@ -1 +0,0 @@
1
- cmd_Release/sandbox.node := ./gyp-mac-tool flock ./Release/linker.lock c++ -bundle -stdlib=libc++ -Wl,-search_paths_first -mmacosx-version-min=10.7 -arch x86_64 -L./Release -o Release/sandbox.node Release/obj.target/sandbox/src/sandbox.o -undefined dynamic_lookup
File without changes
Binary file
@@ -1,6 +0,0 @@
1
- # This file is generated by gyp; do not edit.
2
-
3
- export builddir_name ?= ./build/.
4
- .PHONY: all
5
- all:
6
- $(MAKE) sandbox
package/build/config.gypi DELETED
@@ -1,36 +0,0 @@
1
- # Do not edit. File was generated by node-gyp's "configure" step
2
- {
3
- "target_defaults": {
4
- "cflags": [],
5
- "default_configuration": "Release",
6
- "defines": [],
7
- "include_dirs": [],
8
- "libraries": []
9
- },
10
- "variables": {
11
- "clang": 1,
12
- "host_arch": "x64",
13
- "node_install_npm": "false",
14
- "node_prefix": "/usr/local/Cellar/node/0.10.28",
15
- "node_shared_cares": "false",
16
- "node_shared_http_parser": "false",
17
- "node_shared_libuv": "false",
18
- "node_shared_openssl": "false",
19
- "node_shared_v8": "false",
20
- "node_shared_zlib": "false",
21
- "node_tag": "",
22
- "node_unsafe_optimizations": 0,
23
- "node_use_dtrace": "true",
24
- "node_use_etw": "false",
25
- "node_use_openssl": "true",
26
- "node_use_perfctr": "false",
27
- "python": "/usr/bin/python",
28
- "target_arch": "x64",
29
- "v8_enable_gdbjit": 0,
30
- "v8_no_strict_aliasing": 1,
31
- "v8_use_snapshot": "true",
32
- "nodedir": "/Users/gianni/.node-gyp/0.10.28",
33
- "copy_dev_lib": "true",
34
- "standalone_static_library": 1
35
- }
36
- }