2011-08-04 02:01:30 +02:00
|
|
|
{
|
2011-08-04 08:36:27 +02:00
|
|
|
'variables': {
|
2015-01-24 01:06:07 +01:00
|
|
|
'v8_use_snapshot%': 'false',
|
2017-07-01 02:08:32 +02:00
|
|
|
'v8_trace_maps%': 0,
|
2012-03-28 19:26:10 +02:00
|
|
|
'node_use_dtrace%': 'false',
|
2015-01-22 13:35:16 +01:00
|
|
|
'node_use_lttng%': 'false',
|
2012-06-12 01:23:17 +02:00
|
|
|
'node_use_etw%': 'false',
|
2012-11-21 00:27:22 +01:00
|
|
|
'node_use_perfctr%': 'false',
|
2016-03-23 02:05:54 +01:00
|
|
|
'node_no_browser_globals%': 'false',
|
2016-03-27 01:17:55 +01:00
|
|
|
'node_use_v8_platform%': 'true',
|
|
|
|
'node_use_bundled_v8%': 'true',
|
|
|
|
'node_shared%': 'false',
|
2016-06-29 22:03:18 +02:00
|
|
|
'force_dynamic_crt%': 0,
|
2016-03-27 01:17:55 +01:00
|
|
|
'node_module_version%': '',
|
2012-02-27 00:02:21 +01:00
|
|
|
'node_shared_zlib%': 'false',
|
2012-10-23 15:01:26 +02:00
|
|
|
'node_shared_http_parser%': 'false',
|
2016-03-17 23:25:17 +01:00
|
|
|
'node_shared_cares%': 'false',
|
2012-10-24 01:54:22 +02:00
|
|
|
'node_shared_libuv%': 'false',
|
2017-11-06 09:59:01 +01:00
|
|
|
'node_shared_nghttp2%': 'false',
|
2011-09-05 01:01:53 +02:00
|
|
|
'node_use_openssl%': 'true',
|
2012-06-20 22:31:49 +02:00
|
|
|
'node_shared_openssl%': 'false',
|
2014-03-26 21:30:49 +01:00
|
|
|
'node_v8_options%': '',
|
2015-10-21 18:24:12 +02:00
|
|
|
'node_enable_v8_vtunejit%': 'false',
|
2015-09-29 16:22:00 +02:00
|
|
|
'node_core_target_name%': 'node',
|
2017-12-05 01:07:53 +01:00
|
|
|
'node_lib_target_name%': 'node_lib',
|
|
|
|
'node_intermediate_lib_type%': 'static_library',
|
2011-09-05 01:01:53 +02:00
|
|
|
'library_files': [
|
2016-03-15 21:28:13 +01:00
|
|
|
'lib/internal/bootstrap_node.js',
|
2017-03-10 00:13:34 +01:00
|
|
|
'lib/async_hooks.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/assert.js',
|
|
|
|
'lib/buffer.js',
|
2011-10-11 22:16:33 +02:00
|
|
|
'lib/child_process.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/console.js',
|
|
|
|
'lib/constants.js',
|
|
|
|
'lib/crypto.js',
|
2011-10-12 23:51:25 +02:00
|
|
|
'lib/cluster.js',
|
2011-10-11 22:26:41 +02:00
|
|
|
'lib/dgram.js',
|
2011-10-11 22:21:30 +02:00
|
|
|
'lib/dns.js',
|
2012-04-07 01:26:18 +02:00
|
|
|
'lib/domain.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/events.js',
|
|
|
|
'lib/fs.js',
|
|
|
|
'lib/http.js',
|
http2: introducing HTTP/2
At long last: The initial *experimental* implementation of HTTP/2.
This is an accumulation of the work that has been done in the nodejs/http2
repository, squashed down to a couple of commits. The original commit
history has been preserved in the nodejs/http2 repository.
This PR introduces the nghttp2 C library as a new dependency. This library
provides the majority of the HTTP/2 protocol implementation, with the rest
of the code here providing the mapping of the library into a usable JS API.
Within src, a handful of new node_http2_*.c and node_http2_*.h files are
introduced. These provide the internal mechanisms that interface with nghttp
and define the `process.binding('http2')` interface.
The JS API is defined within `internal/http2/*.js`.
There are two APIs provided: Core and Compat.
The Core API is HTTP/2 specific and is designed to be as minimal and as
efficient as possible.
The Compat API is intended to be as close to the existing HTTP/1 API as
possible, with some exceptions.
Tests, documentation and initial benchmarks are included.
The `http2` module is gated by a new `--expose-http2` command line flag.
When used, `require('http2')` will be exposed to users. Note that there
is an existing `http2` module on npm that would be impacted by the introduction
of this module, which is the main reason for gating this behind a flag.
When using `require('http2')` the first time, a process warning will be
emitted indicating that an experimental feature is being used.
To run the benchmarks, the `h2load` tool (part of the nghttp project) is
required: `./node benchmarks/http2/simple.js benchmarker=h2load`. Only
two benchmarks are currently available.
Additional configuration options to enable verbose debugging are provided:
```
$ ./configure --debug-http2 --debug-nghttp2
$ NODE_DEBUG=http2 ./node
```
The `--debug-http2` configuration option enables verbose debug statements
from the `src/node_http2_*` files. The `--debug-nghttp2` enables the nghttp
library's own verbose debug output. The `NODE_DEBUG=http2` enables JS-level
debug output.
The following illustrates as simple HTTP/2 server and client interaction:
(The HTTP/2 client and server support both plain text and TLS connections)
```jt client = http2.connect('http://localhost:80');
const req = client.request({ ':path': '/some/path' });
req.on('data', (chunk) => { /* do something with the data */ });
req.on('end', () => {
client.destroy();
});
// Plain text (non-TLS server)
const server = http2.createServer();
server.on('stream', (stream, requestHeaders) => {
stream.respond({ ':status': 200 });
stream.write('hello ');
stream.end('world');
});
server.listen(80);
```
```js
const http2 = require('http2');
const client = http2.connect('http://localhost');
```
Author: Anna Henningsen <anna@addaleax.net>
Author: Colin Ihrig <cjihrig@gmail.com>
Author: Daniel Bevenius <daniel.bevenius@gmail.com>
Author: James M Snell <jasnell@gmail.com>
Author: Jun Mukai
Author: Kelvin Jin
Author: Matteo Collina <matteo.collina@gmail.com>
Author: Robert Kowalski <rok@kowalski.gd>
Author: Santiago Gimeno <santiago.gimeno@gmail.com>
Author: Sebastiaan Deckers <sebdeckers83@gmail.com>
Author: Yosuke Furukawa <yosuke.furukawa@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/14239
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2017-07-17 19:17:16 +02:00
|
|
|
'lib/http2.js',
|
2013-04-11 23:47:15 +02:00
|
|
|
'lib/_http_agent.js',
|
2013-04-12 01:11:12 +02:00
|
|
|
'lib/_http_client.js',
|
2013-04-12 00:15:41 +02:00
|
|
|
'lib/_http_common.js',
|
2013-04-12 00:00:45 +02:00
|
|
|
'lib/_http_incoming.js',
|
2013-04-12 00:37:14 +02:00
|
|
|
'lib/_http_outgoing.js',
|
2013-04-12 01:00:19 +02:00
|
|
|
'lib/_http_server.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/https.js',
|
2016-12-13 02:08:31 +01:00
|
|
|
'lib/inspector.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/module.js',
|
2011-10-11 22:07:14 +02:00
|
|
|
'lib/net.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/os.js',
|
|
|
|
'lib/path.js',
|
2017-08-08 00:53:24 +02:00
|
|
|
'lib/perf_hooks.js',
|
2014-12-30 23:25:52 +01:00
|
|
|
'lib/process.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/punycode.js',
|
|
|
|
'lib/querystring.js',
|
|
|
|
'lib/readline.js',
|
|
|
|
'lib/repl.js',
|
|
|
|
'lib/stream.js',
|
2012-10-03 00:44:50 +02:00
|
|
|
'lib/_stream_readable.js',
|
|
|
|
'lib/_stream_writable.js',
|
|
|
|
'lib/_stream_duplex.js',
|
|
|
|
'lib/_stream_transform.js',
|
|
|
|
'lib/_stream_passthrough.js',
|
2015-02-23 21:09:44 +01:00
|
|
|
'lib/_stream_wrap.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/string_decoder.js',
|
|
|
|
'lib/sys.js',
|
2011-10-11 22:07:14 +02:00
|
|
|
'lib/timers.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/tls.js',
|
2014-03-07 00:27:01 +01:00
|
|
|
'lib/_tls_common.js',
|
2013-06-13 15:36:00 +02:00
|
|
|
'lib/_tls_wrap.js',
|
2011-10-11 22:41:33 +02:00
|
|
|
'lib/tty.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/url.js',
|
|
|
|
'lib/util.js',
|
2014-12-09 22:57:48 +01:00
|
|
|
'lib/v8.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
'lib/vm.js',
|
2011-09-07 01:13:05 +02:00
|
|
|
'lib/zlib.js',
|
2017-11-12 18:46:55 +01:00
|
|
|
'lib/internal/async_hooks.js',
|
2016-10-11 23:12:31 +02:00
|
|
|
'lib/internal/buffer.js',
|
2015-05-22 16:52:05 +02:00
|
|
|
'lib/internal/child_process.js',
|
2017-01-11 21:30:55 +01:00
|
|
|
'lib/internal/cluster/child.js',
|
|
|
|
'lib/internal/cluster/master.js',
|
|
|
|
'lib/internal/cluster/round_robin_handle.js',
|
|
|
|
'lib/internal/cluster/shared_handle.js',
|
|
|
|
'lib/internal/cluster/utils.js',
|
|
|
|
'lib/internal/cluster/worker.js',
|
2017-09-06 17:10:34 +02:00
|
|
|
'lib/internal/crypto/certificate.js',
|
|
|
|
'lib/internal/crypto/cipher.js',
|
|
|
|
'lib/internal/crypto/diffiehellman.js',
|
|
|
|
'lib/internal/crypto/hash.js',
|
|
|
|
'lib/internal/crypto/pbkdf2.js',
|
|
|
|
'lib/internal/crypto/random.js',
|
|
|
|
'lib/internal/crypto/sig.js',
|
|
|
|
'lib/internal/crypto/util.js',
|
2017-06-12 17:25:53 +02:00
|
|
|
'lib/internal/encoding.js',
|
2016-10-24 22:09:34 +02:00
|
|
|
'lib/internal/errors.js',
|
2015-02-14 20:53:34 +01:00
|
|
|
'lib/internal/freelist.js',
|
2016-08-30 18:53:50 +02:00
|
|
|
'lib/internal/fs.js',
|
2017-03-06 03:13:09 +01:00
|
|
|
'lib/internal/http.js',
|
2017-07-17 16:51:26 +02:00
|
|
|
'lib/internal/inspector_async_hook.js',
|
2015-09-26 23:27:36 +02:00
|
|
|
'lib/internal/linkedlist.js',
|
2017-06-06 02:44:56 +02:00
|
|
|
'lib/internal/loader/Loader.js',
|
2017-11-27 00:12:09 +01:00
|
|
|
'lib/internal/loader/CreateDynamicModule.js',
|
|
|
|
'lib/internal/loader/DefaultResolve.js',
|
2017-06-06 02:44:56 +02:00
|
|
|
'lib/internal/loader/ModuleJob.js',
|
2017-11-27 00:12:09 +01:00
|
|
|
'lib/internal/loader/ModuleMap.js',
|
2018-02-01 16:44:27 +01:00
|
|
|
'lib/internal/loader/ModuleWrap.js',
|
2017-11-27 00:12:09 +01:00
|
|
|
'lib/internal/loader/Translators.js',
|
2017-06-06 02:44:56 +02:00
|
|
|
'lib/internal/safe_globals.js',
|
2016-01-26 15:12:41 +01:00
|
|
|
'lib/internal/net.js',
|
2015-08-17 23:33:13 +02:00
|
|
|
'lib/internal/module.js',
|
2017-07-16 17:51:44 +02:00
|
|
|
'lib/internal/os.js',
|
2017-12-24 16:26:24 +01:00
|
|
|
'lib/internal/process/modules.js',
|
2016-03-15 21:13:52 +01:00
|
|
|
'lib/internal/process/next_tick.js',
|
|
|
|
'lib/internal/process/promises.js',
|
|
|
|
'lib/internal/process/stdio.js',
|
2016-01-20 20:38:35 +01:00
|
|
|
'lib/internal/process/warning.js',
|
2016-03-15 21:13:52 +01:00
|
|
|
'lib/internal/process.js',
|
2017-02-04 07:06:04 +01:00
|
|
|
'lib/internal/querystring.js',
|
2017-01-10 10:21:30 +01:00
|
|
|
'lib/internal/process/write-coverage.js',
|
2015-11-16 20:09:26 +01:00
|
|
|
'lib/internal/readline.js',
|
2015-04-23 09:35:53 +02:00
|
|
|
'lib/internal/repl.js',
|
2017-09-23 09:10:47 +02:00
|
|
|
'lib/internal/repl/await.js',
|
2015-09-26 23:27:36 +02:00
|
|
|
'lib/internal/socket_list.js',
|
2017-02-16 19:26:10 +01:00
|
|
|
'lib/internal/test/unicode.js',
|
2017-02-03 22:05:59 +01:00
|
|
|
'lib/internal/timers.js',
|
2017-09-08 09:58:54 +02:00
|
|
|
'lib/internal/tls.js',
|
2017-07-18 01:47:12 +02:00
|
|
|
'lib/internal/trace_events_async_hooks.js',
|
2016-05-31 20:52:19 +02:00
|
|
|
'lib/internal/url.js',
|
2015-05-28 16:01:56 +02:00
|
|
|
'lib/internal/util.js',
|
2017-10-06 06:27:46 +02:00
|
|
|
'lib/internal/util/comparisons.js',
|
2017-10-29 18:19:24 +01:00
|
|
|
'lib/internal/util/inspector.js',
|
2017-09-28 09:16:41 +02:00
|
|
|
'lib/internal/util/types.js',
|
http2: introducing HTTP/2
At long last: The initial *experimental* implementation of HTTP/2.
This is an accumulation of the work that has been done in the nodejs/http2
repository, squashed down to a couple of commits. The original commit
history has been preserved in the nodejs/http2 repository.
This PR introduces the nghttp2 C library as a new dependency. This library
provides the majority of the HTTP/2 protocol implementation, with the rest
of the code here providing the mapping of the library into a usable JS API.
Within src, a handful of new node_http2_*.c and node_http2_*.h files are
introduced. These provide the internal mechanisms that interface with nghttp
and define the `process.binding('http2')` interface.
The JS API is defined within `internal/http2/*.js`.
There are two APIs provided: Core and Compat.
The Core API is HTTP/2 specific and is designed to be as minimal and as
efficient as possible.
The Compat API is intended to be as close to the existing HTTP/1 API as
possible, with some exceptions.
Tests, documentation and initial benchmarks are included.
The `http2` module is gated by a new `--expose-http2` command line flag.
When used, `require('http2')` will be exposed to users. Note that there
is an existing `http2` module on npm that would be impacted by the introduction
of this module, which is the main reason for gating this behind a flag.
When using `require('http2')` the first time, a process warning will be
emitted indicating that an experimental feature is being used.
To run the benchmarks, the `h2load` tool (part of the nghttp project) is
required: `./node benchmarks/http2/simple.js benchmarker=h2load`. Only
two benchmarks are currently available.
Additional configuration options to enable verbose debugging are provided:
```
$ ./configure --debug-http2 --debug-nghttp2
$ NODE_DEBUG=http2 ./node
```
The `--debug-http2` configuration option enables verbose debug statements
from the `src/node_http2_*` files. The `--debug-nghttp2` enables the nghttp
library's own verbose debug output. The `NODE_DEBUG=http2` enables JS-level
debug output.
The following illustrates as simple HTTP/2 server and client interaction:
(The HTTP/2 client and server support both plain text and TLS connections)
```jt client = http2.connect('http://localhost:80');
const req = client.request({ ':path': '/some/path' });
req.on('data', (chunk) => { /* do something with the data */ });
req.on('end', () => {
client.destroy();
});
// Plain text (non-TLS server)
const server = http2.createServer();
server.on('stream', (stream, requestHeaders) => {
stream.respond({ ':status': 200 });
stream.write('hello ');
stream.end('world');
});
server.listen(80);
```
```js
const http2 = require('http2');
const client = http2.connect('http://localhost');
```
Author: Anna Henningsen <anna@addaleax.net>
Author: Colin Ihrig <cjihrig@gmail.com>
Author: Daniel Bevenius <daniel.bevenius@gmail.com>
Author: James M Snell <jasnell@gmail.com>
Author: Jun Mukai
Author: Kelvin Jin
Author: Matteo Collina <matteo.collina@gmail.com>
Author: Robert Kowalski <rok@kowalski.gd>
Author: Santiago Gimeno <santiago.gimeno@gmail.com>
Author: Sebastiaan Deckers <sebdeckers83@gmail.com>
Author: Yosuke Furukawa <yosuke.furukawa@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/14239
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2017-07-17 19:17:16 +02:00
|
|
|
'lib/internal/http2/core.js',
|
|
|
|
'lib/internal/http2/compat.js',
|
|
|
|
'lib/internal/http2/util.js',
|
2017-11-24 00:13:44 +01:00
|
|
|
'lib/internal/v8.js',
|
2015-11-25 15:08:58 +01:00
|
|
|
'lib/internal/v8_prof_polyfill.js',
|
|
|
|
'lib/internal/v8_prof_processor.js',
|
2018-01-14 08:35:51 +01:00
|
|
|
'lib/internal/vm/Module.js',
|
2015-08-26 23:41:28 +02:00
|
|
|
'lib/internal/streams/lazy_transform.js',
|
2017-12-19 13:33:31 +01:00
|
|
|
'lib/internal/streams/async_iterator.js',
|
2016-05-31 19:03:59 +02:00
|
|
|
'lib/internal/streams/BufferList.js',
|
2017-12-23 05:55:37 +01:00
|
|
|
'lib/internal/streams/duplexpair.js',
|
2016-08-09 17:34:23 +02:00
|
|
|
'lib/internal/streams/legacy.js',
|
2017-05-06 14:20:52 +02:00
|
|
|
'lib/internal/streams/destroy.js',
|
2018-01-09 20:39:29 +01:00
|
|
|
'lib/internal/streams/state.js',
|
2017-10-12 07:17:48 +02:00
|
|
|
'lib/internal/wrap_js_stream.js',
|
2015-11-25 15:08:58 +01:00
|
|
|
'deps/v8/tools/splaytree.js',
|
|
|
|
'deps/v8/tools/codemap.js',
|
|
|
|
'deps/v8/tools/consarray.js',
|
|
|
|
'deps/v8/tools/csvparser.js',
|
|
|
|
'deps/v8/tools/profile.js',
|
|
|
|
'deps/v8/tools/profile_view.js',
|
|
|
|
'deps/v8/tools/logreader.js',
|
2018-01-30 15:23:16 +01:00
|
|
|
'deps/v8/tools/arguments.js',
|
2015-11-25 15:08:58 +01:00
|
|
|
'deps/v8/tools/tickprocessor.js',
|
|
|
|
'deps/v8/tools/SourceMap.js',
|
|
|
|
'deps/v8/tools/tickprocessor-driver.js',
|
2016-12-20 18:01:28 +01:00
|
|
|
'deps/node-inspect/lib/_inspect.js',
|
|
|
|
'deps/node-inspect/lib/internal/inspect_client.js',
|
|
|
|
'deps/node-inspect/lib/internal/inspect_repl.js',
|
2017-09-23 00:52:47 +02:00
|
|
|
'deps/acorn/dist/acorn.js',
|
|
|
|
'deps/acorn/dist/walk.js',
|
2011-09-05 01:01:53 +02:00
|
|
|
],
|
2016-03-27 01:17:55 +01:00
|
|
|
'conditions': [
|
|
|
|
[ 'node_shared=="true"', {
|
|
|
|
'node_target_type%': 'shared_library',
|
2017-12-05 01:07:53 +01:00
|
|
|
'conditions': [
|
|
|
|
['OS=="aix"', {
|
|
|
|
# For AIX, always generate static library first,
|
|
|
|
# It needs an extra step to generate exp and
|
|
|
|
# then use both static lib and exp to create
|
|
|
|
# shared lib.
|
|
|
|
'node_intermediate_lib_type': 'static_library',
|
|
|
|
}, {
|
|
|
|
'node_intermediate_lib_type': 'shared_library',
|
|
|
|
}],
|
|
|
|
],
|
2016-03-27 01:17:55 +01:00
|
|
|
}, {
|
|
|
|
'node_target_type%': 'executable',
|
|
|
|
}],
|
2016-04-18 16:10:20 +02:00
|
|
|
[ 'OS=="win" and '
|
|
|
|
'node_use_openssl=="true" and '
|
|
|
|
'node_shared_openssl=="false"', {
|
|
|
|
'use_openssl_def': 1,
|
|
|
|
}, {
|
|
|
|
'use_openssl_def': 0,
|
|
|
|
}],
|
2016-03-27 01:17:55 +01:00
|
|
|
],
|
2011-08-04 08:36:27 +02:00
|
|
|
},
|
|
|
|
|
2011-08-04 02:01:30 +02:00
|
|
|
'targets': [
|
|
|
|
{
|
2015-09-29 16:22:00 +02:00
|
|
|
'target_name': '<(node_core_target_name)',
|
2017-12-05 01:07:53 +01:00
|
|
|
'type': 'executable',
|
|
|
|
'sources': [
|
|
|
|
'src/node_main.cc'
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'src',
|
|
|
|
'deps/v8/include',
|
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
[ 'node_intermediate_lib_type=="static_library" and '
|
|
|
|
'node_shared=="true" and OS=="aix"', {
|
|
|
|
# For AIX, shared lib is linked by static lib and .exp. In the
|
|
|
|
# case here, the executable needs to link to shared lib.
|
|
|
|
# Therefore, use 'node_aix_shared' target to generate the
|
|
|
|
# shared lib and then executable.
|
|
|
|
'dependencies': [ 'node_aix_shared' ],
|
|
|
|
}, {
|
|
|
|
'dependencies': [ '<(node_lib_target_name)' ],
|
|
|
|
}],
|
|
|
|
[ 'node_intermediate_lib_type=="static_library" and '
|
|
|
|
'node_shared=="false"', {
|
|
|
|
'includes': [
|
|
|
|
'node.gypi'
|
|
|
|
],
|
|
|
|
'xcode_settings': {
|
|
|
|
'OTHER_LDFLAGS': [
|
|
|
|
'-Wl,-force_load,<(PRODUCT_DIR)/<(STATIC_LIB_PREFIX)'
|
|
|
|
'<(node_core_target_name)<(STATIC_LIB_SUFFIX)',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'AdditionalOptions': [
|
|
|
|
'/WHOLEARCHIVE:<(PRODUCT_DIR)\\lib\\'
|
|
|
|
'<(node_core_target_name)<(STATIC_LIB_SUFFIX)',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'conditions': [
|
2018-01-17 22:16:14 +01:00
|
|
|
['OS!="aix"', {
|
2017-12-05 01:07:53 +01:00
|
|
|
'ldflags': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'-Wl,--whole-archive,<(obj_dir)/<(STATIC_LIB_PREFIX)'
|
2017-12-05 01:07:53 +01:00
|
|
|
'<(node_core_target_name)<(STATIC_LIB_SUFFIX)',
|
|
|
|
'-Wl,--no-whole-archive',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'OS=="win"', {
|
|
|
|
'sources': [ 'src/res/node.rc' ],
|
|
|
|
'conditions': [
|
|
|
|
[ 'node_use_etw=="true"', {
|
|
|
|
'sources': [
|
|
|
|
'tools/msvs/genfiles/node_etw_provider.rc'
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'node_use_perfctr=="true"', {
|
|
|
|
'sources': [
|
|
|
|
'tools/msvs/genfiles/node_perfctr_provider.rc',
|
|
|
|
],
|
|
|
|
}]
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'node_intermediate_lib_type=="shared_library" and OS=="win"', {
|
|
|
|
# On Windows, having the same name for both executable and shared
|
|
|
|
# lib causes filename collision. Need a different PRODUCT_NAME for
|
|
|
|
# the executable and rename it back to node.exe later
|
|
|
|
'product_name': '<(node_core_target_name)-win',
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'target_name': '<(node_lib_target_name)',
|
|
|
|
'type': '<(node_intermediate_lib_type)',
|
|
|
|
'product_name': '<(node_core_target_name)',
|
2011-08-04 08:36:27 +02:00
|
|
|
|
2011-08-04 02:01:30 +02:00
|
|
|
'dependencies': [
|
2011-08-05 01:40:07 +02:00
|
|
|
'node_js2c#host',
|
2011-08-04 02:01:30 +02:00
|
|
|
],
|
2011-08-05 01:40:07 +02:00
|
|
|
|
2016-10-18 16:41:26 +02:00
|
|
|
'includes': [
|
|
|
|
'node.gypi'
|
|
|
|
],
|
|
|
|
|
2011-08-05 01:40:07 +02:00
|
|
|
'include_dirs': [
|
2011-08-08 21:11:48 +02:00
|
|
|
'src',
|
2017-11-06 09:59:01 +01:00
|
|
|
'<(SHARED_INTERMEDIATE_DIR)' # for node_natives.h
|
2011-08-05 01:40:07 +02:00
|
|
|
],
|
|
|
|
|
2011-08-04 02:01:30 +02:00
|
|
|
'sources': [
|
2017-11-14 13:34:52 +01:00
|
|
|
'src/async_wrap.cc',
|
2011-08-08 21:11:48 +02:00
|
|
|
'src/cares_wrap.cc',
|
2016-07-04 19:20:33 +02:00
|
|
|
'src/connection_wrap.cc',
|
2016-06-29 20:20:54 +02:00
|
|
|
'src/connect_wrap.cc',
|
2017-01-18 12:34:33 +01:00
|
|
|
'src/env.cc',
|
|
|
|
'src/fs_event_wrap.cc',
|
2011-08-08 21:11:48 +02:00
|
|
|
'src/handle_wrap.cc',
|
2015-02-23 21:09:44 +01:00
|
|
|
'src/js_stream.cc',
|
2017-06-06 02:44:56 +02:00
|
|
|
'src/module_wrap.cc',
|
2011-08-08 21:11:48 +02:00
|
|
|
'src/node.cc',
|
2017-03-20 22:55:26 +01:00
|
|
|
'src/node_api.cc',
|
|
|
|
'src/node_api.h',
|
|
|
|
'src/node_api_types.h',
|
2011-08-08 21:11:48 +02:00
|
|
|
'src/node_buffer.cc',
|
2016-04-19 06:02:18 +02:00
|
|
|
'src/node_config.cc',
|
2011-08-08 21:11:48 +02:00
|
|
|
'src/node_constants.cc',
|
vm, core, module: re-do vm to fix known issues
As documented in #3042 and in [1], the existing vm implementation has
many problems. All of these are solved by @brianmcd's [contextify][2]
package. This commit uses contextify as a conceptual base and its code
core to overhaul the vm module and fix its many edge cases and caveats.
Functionally, this fixes #3042. In particular:
- A context is now indistinguishable from the object it is based on
(the "sandbox"). A context is simply a sandbox that has been marked
by the vm module, via `vm.createContext`, with special internal
information that allows scripts to be run inside of it.
- Consequently, items added to the context from anywhere are
immediately visible to all code that can access that context, both
inside and outside the virtual machine.
This commit also smooths over the API very slightly:
- Parameter defaults are now uniformly triggered via `undefined`, per
ES6 semantics and previous discussion at [3].
- Several undocumented and problematic features have been removed, e.g.
the conflation of `vm.Script` with `vm` itself, and the fact that
`Script` instances also had all static `vm` methods. The API is now
exactly as documented (although arguably the existence of the
`vm.Script` export is not yet documented, just the `Script` class
itself).
In terms of implementation, this replaces node_script.cc with
node_contextify.cc, which is derived originally from [4] (see [5]) but
has since undergone extensive modifications and iterations to expose
the most useful C++ API and use the coding conventions and utilities of
Node core.
The bindings exposed by `process.binding('contextify')`
(node_contextify.cc) replace those formerly exposed by
`process.binding('evals')` (node_script.cc). They are:
- ContextifyScript(code, [filename]), with methods:
- runInThisContext()
- runInContext(sandbox, [timeout])
- makeContext(sandbox)
From this, the vm.js file builds the entire documented vm module API.
node.js and module.js were modified to use this new native binding, or
the vm module itself where possible. This introduces an extra line or
two into the stack traces of module compilation (and thus into most
stack traces), explaining the changed tests.
The tests were also updated slightly, with all vm-related simple tests
consolidated as test/simple/test-vm-* (some of them were formerly
test/simple/test-script-*). At the same time they switched from
`common.debug` to `console.error` and were updated to use
`assert.throws` instead of rolling their own error-testing methods.
New tests were also added, of course, demonstrating the new
capabilities and fixes.
[1]: http://nodejs.org/docs/v0.10.16/api/vm.html#vm_caveats
[2]: https://github.com/brianmcd/contextify
[3]: https://github.com/joyent/node/issues/5323#issuecomment-20250726
[4]: https://github.com/kkoopa/contextify/blob/bf123f3ef960f0943d1e30bda02e3163a004e964/src/contextify.cc
[5]: https://gist.github.com/domenic/6068120
2013-07-27 06:34:12 +02:00
|
|
|
'src/node_contextify.cc',
|
2016-11-18 22:52:22 +01:00
|
|
|
'src/node_debug_options.cc',
|
2018-01-19 21:42:59 +01:00
|
|
|
'src/node_domain.cc',
|
2011-08-08 21:11:48 +02:00
|
|
|
'src/node_file.cc',
|
http2: introducing HTTP/2
At long last: The initial *experimental* implementation of HTTP/2.
This is an accumulation of the work that has been done in the nodejs/http2
repository, squashed down to a couple of commits. The original commit
history has been preserved in the nodejs/http2 repository.
This PR introduces the nghttp2 C library as a new dependency. This library
provides the majority of the HTTP/2 protocol implementation, with the rest
of the code here providing the mapping of the library into a usable JS API.
Within src, a handful of new node_http2_*.c and node_http2_*.h files are
introduced. These provide the internal mechanisms that interface with nghttp
and define the `process.binding('http2')` interface.
The JS API is defined within `internal/http2/*.js`.
There are two APIs provided: Core and Compat.
The Core API is HTTP/2 specific and is designed to be as minimal and as
efficient as possible.
The Compat API is intended to be as close to the existing HTTP/1 API as
possible, with some exceptions.
Tests, documentation and initial benchmarks are included.
The `http2` module is gated by a new `--expose-http2` command line flag.
When used, `require('http2')` will be exposed to users. Note that there
is an existing `http2` module on npm that would be impacted by the introduction
of this module, which is the main reason for gating this behind a flag.
When using `require('http2')` the first time, a process warning will be
emitted indicating that an experimental feature is being used.
To run the benchmarks, the `h2load` tool (part of the nghttp project) is
required: `./node benchmarks/http2/simple.js benchmarker=h2load`. Only
two benchmarks are currently available.
Additional configuration options to enable verbose debugging are provided:
```
$ ./configure --debug-http2 --debug-nghttp2
$ NODE_DEBUG=http2 ./node
```
The `--debug-http2` configuration option enables verbose debug statements
from the `src/node_http2_*` files. The `--debug-nghttp2` enables the nghttp
library's own verbose debug output. The `NODE_DEBUG=http2` enables JS-level
debug output.
The following illustrates as simple HTTP/2 server and client interaction:
(The HTTP/2 client and server support both plain text and TLS connections)
```jt client = http2.connect('http://localhost:80');
const req = client.request({ ':path': '/some/path' });
req.on('data', (chunk) => { /* do something with the data */ });
req.on('end', () => {
client.destroy();
});
// Plain text (non-TLS server)
const server = http2.createServer();
server.on('stream', (stream, requestHeaders) => {
stream.respond({ ':status': 200 });
stream.write('hello ');
stream.end('world');
});
server.listen(80);
```
```js
const http2 = require('http2');
const client = http2.connect('http://localhost');
```
Author: Anna Henningsen <anna@addaleax.net>
Author: Colin Ihrig <cjihrig@gmail.com>
Author: Daniel Bevenius <daniel.bevenius@gmail.com>
Author: James M Snell <jasnell@gmail.com>
Author: Jun Mukai
Author: Kelvin Jin
Author: Matteo Collina <matteo.collina@gmail.com>
Author: Robert Kowalski <rok@kowalski.gd>
Author: Santiago Gimeno <santiago.gimeno@gmail.com>
Author: Sebastiaan Deckers <sebdeckers83@gmail.com>
Author: Yosuke Furukawa <yosuke.furukawa@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/14239
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2017-07-17 19:17:16 +02:00
|
|
|
'src/node_http2.cc',
|
2011-08-08 21:11:48 +02:00
|
|
|
'src/node_http_parser.cc',
|
|
|
|
'src/node_os.cc',
|
2017-03-13 23:17:57 +01:00
|
|
|
'src/node_platform.cc',
|
2017-08-08 00:53:24 +02:00
|
|
|
'src/node_perf.cc',
|
2017-12-26 01:17:25 +01:00
|
|
|
'src/node_postmortem_metadata.cc',
|
2017-01-27 06:38:11 +01:00
|
|
|
'src/node_serdes.cc',
|
2017-07-18 01:47:12 +02:00
|
|
|
'src/node_trace_events.cc',
|
2016-05-31 20:52:19 +02:00
|
|
|
'src/node_url.cc',
|
2015-09-29 21:30:22 +02:00
|
|
|
'src/node_util.cc',
|
2013-10-28 14:57:47 +01:00
|
|
|
'src/node_v8.cc',
|
2012-06-16 22:41:37 +02:00
|
|
|
'src/node_stat_watcher.cc',
|
2012-10-08 21:24:08 +02:00
|
|
|
'src/node_watchdog.cc',
|
2011-09-07 01:13:05 +02:00
|
|
|
'src/node_zlib.cc',
|
build, i18n: improve Intl build, add "--with-intl"
The two main goals of this change are:
- To make it easier to build the Intl option using ICU (particularly,
using a newer ICU than v8/Chromium's version)
- To enable a much smaller ICU build with only English support The goal
here is to get node.js binaries built this way by default so that the
Intl API can be used. Additional data can be added at execution time
(see Readme and wiki)
More details are at https://github.com/joyent/node/pull/7719
In particular, this change adds the "--with-intl=" configure option to
provide more ways of building "Intl":
- "full-icu" picks up an ICU from deps/icu
- "small-icu" is similar, but builds only English
- "system-icu" uses pkg-config to find an installed ICU
- "none" does nothing (no Intl)
For Windows builds, the "full-icu" or "small-icu" options are added to
vcbuild.bat.
Note that the existing "--with-icu-path" option is not removed from
configure, but may not be used alongside the new option.
Wiki changes have already been made on
https://github.com/joyent/node/wiki/Installation
and a new page created at
https://github.com/joyent/node/wiki/Intl
(marked as provisional until this change lands.)
Summary of changes:
* README.md : doc updates
* .gitignore : added "deps/icu" as this is the location where ICU is
unpacked to.
* Makefile : added the tools/icu/* files to cpplint, but excluded a
problematic file.
* configure : added the "--with-intl" option mentioned above.
Calculate at config time the list of ICU source files to use and data
packaging options.
* node.gyp : add the new files src/node_i18n.cc/.h as well as ICU
linkage.
* src/node.cc : add call into
node::i18n::InitializeICUDirectory(icu_data_dir) as well as new
--icu-data-dir option and NODE_ICU_DATA env variable to configure ICU
data loading. This loading is only relevant in the "small"
configuration.
* src/node_i18n.cc : new source file for the above Initialize..
function, to setup ICU as needed.
* tools/icu : new directory with some tools needed for this build.
* tools/icu/icu-generic.gyp : new .gyp file that builds ICU in some new
ways, both on unix/mac and windows.
* tools/icu/icu-system.gyp : new .gyp file to build node against a
pkg-config detected ICU.
* tools/icu/icu_small.json : new config file for the "English-only" small
build.
* tools/icu/icutrim.py : new tool for trimming down ICU data. Reads the
above .json file.
* tools/icu/iculslocs.cc : new tool for repairing ICU data manifests
after trim operation.
* tools/icu/no-op.cc : dummy file to force .gyp into using a C++ linker.
* vcbuild.bat : added small-icu and full-icu options, to call into
configure.
* Fixed toolset dependencies, see
https://github.com/joyent/node/pull/7719#issuecomment-54641687
Note that because of a bug in gyp {CC,CXX}_host must also be set.
Otherwise gcc/g++ will be used by default for part of the build.
Reviewed-by: Trevor Norris <trev.norris@gmail.com>
Reviewed-by: Fedor Indutny <fedor@indutny.com>
2014-09-05 07:03:24 +02:00
|
|
|
'src/node_i18n.cc',
|
2011-08-08 21:11:48 +02:00
|
|
|
'src/pipe_wrap.cc',
|
2017-01-18 12:34:33 +01:00
|
|
|
'src/process_wrap.cc',
|
2012-08-20 23:59:21 +02:00
|
|
|
'src/signal_wrap.cc',
|
2014-02-10 21:22:06 +01:00
|
|
|
'src/spawn_sync.cc',
|
2013-05-02 00:40:43 +02:00
|
|
|
'src/string_bytes.cc',
|
2017-01-17 07:51:25 +01:00
|
|
|
'src/string_search.cc',
|
stream_base: introduce StreamBase
StreamBase is an improved way to write C++ streams. The class itself is
for separting `StreamWrap` (with the methods like `.writeAsciiString`,
`.writeBuffer`, `.writev`, etc) from the `HandleWrap` class, making
possible to write abstract C++ streams that are not bound to any uv
socket.
The following methods are important part of the abstraction (which
mimics libuv's stream API):
* Events:
* `OnAlloc(size_t size, uv_buf_t*)`
* `OnRead(ssize_t nread, const uv_buf_t*, uv_handle_type pending)`
* `OnAfterWrite(WriteWrap*)`
* Wrappers:
* `DoShutdown(ShutdownWrap*)`
* `DoTryWrite(uv_buf_t** bufs, size_t* count)`
* `DoWrite(WriteWrap*, uv_buf_t*, size_t count, uv_stream_t* handle)`
* `Error()`
* `ClearError()`
The implementation should provide all of these methods, thus providing
the access to the underlying resource (be it uv handle, TLS socket, or
anything else).
A C++ stream may consume the input of another stream by replacing the
event callbacks and proxying the writes. This kind of API is actually
used now for the TLSWrap implementation, making it possible to wrap TLS
stream into another TLS stream. Thus legacy API calls are no longer
required in `_tls_wrap.js`.
PR-URL: https://github.com/iojs/io.js/pull/840
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
2015-02-22 19:59:07 +01:00
|
|
|
'src/stream_base.cc',
|
2011-08-08 21:11:48 +02:00
|
|
|
'src/stream_wrap.cc',
|
|
|
|
'src/tcp_wrap.cc',
|
|
|
|
'src/timer_wrap.cc',
|
2017-01-18 12:34:33 +01:00
|
|
|
'src/tracing/agent.cc',
|
|
|
|
'src/tracing/node_trace_buffer.cc',
|
|
|
|
'src/tracing/node_trace_writer.cc',
|
|
|
|
'src/tracing/trace_event.cc',
|
2011-09-20 22:38:07 +02:00
|
|
|
'src/tty_wrap.cc',
|
2011-08-25 01:20:08 +02:00
|
|
|
'src/udp_wrap.cc',
|
2017-01-17 07:51:25 +01:00
|
|
|
'src/util.cc',
|
2013-07-16 23:08:25 +02:00
|
|
|
'src/uv.cc',
|
2011-08-15 18:35:48 +02:00
|
|
|
# headers to make for a more pleasant IDE experience
|
2017-08-25 21:45:00 +02:00
|
|
|
'src/aliased_buffer.h',
|
2017-11-14 13:34:52 +01:00
|
|
|
'src/async_wrap.h',
|
|
|
|
'src/async_wrap-inl.h',
|
2017-11-14 13:34:52 +01:00
|
|
|
'src/base_object.h',
|
|
|
|
'src/base_object-inl.h',
|
2016-07-04 19:20:33 +02:00
|
|
|
'src/connection_wrap.h',
|
2016-06-29 20:20:54 +02:00
|
|
|
'src/connect_wrap.h',
|
2013-08-11 00:26:11 +02:00
|
|
|
'src/env.h',
|
|
|
|
'src/env-inl.h',
|
2011-08-15 18:35:48 +02:00
|
|
|
'src/handle_wrap.h',
|
2015-02-23 21:09:44 +01:00
|
|
|
'src/js_stream.h',
|
2017-06-06 02:44:56 +02:00
|
|
|
'src/module_wrap.h',
|
2011-08-15 18:35:48 +02:00
|
|
|
'src/node.h',
|
|
|
|
'src/node_buffer.h',
|
|
|
|
'src/node_constants.h',
|
2017-12-09 17:32:34 +01:00
|
|
|
'src/node_contextify.h',
|
2016-11-18 22:52:22 +01:00
|
|
|
'src/node_debug_options.h',
|
2017-12-14 19:49:55 +01:00
|
|
|
'src/node_file.h',
|
http2: introducing HTTP/2
At long last: The initial *experimental* implementation of HTTP/2.
This is an accumulation of the work that has been done in the nodejs/http2
repository, squashed down to a couple of commits. The original commit
history has been preserved in the nodejs/http2 repository.
This PR introduces the nghttp2 C library as a new dependency. This library
provides the majority of the HTTP/2 protocol implementation, with the rest
of the code here providing the mapping of the library into a usable JS API.
Within src, a handful of new node_http2_*.c and node_http2_*.h files are
introduced. These provide the internal mechanisms that interface with nghttp
and define the `process.binding('http2')` interface.
The JS API is defined within `internal/http2/*.js`.
There are two APIs provided: Core and Compat.
The Core API is HTTP/2 specific and is designed to be as minimal and as
efficient as possible.
The Compat API is intended to be as close to the existing HTTP/1 API as
possible, with some exceptions.
Tests, documentation and initial benchmarks are included.
The `http2` module is gated by a new `--expose-http2` command line flag.
When used, `require('http2')` will be exposed to users. Note that there
is an existing `http2` module on npm that would be impacted by the introduction
of this module, which is the main reason for gating this behind a flag.
When using `require('http2')` the first time, a process warning will be
emitted indicating that an experimental feature is being used.
To run the benchmarks, the `h2load` tool (part of the nghttp project) is
required: `./node benchmarks/http2/simple.js benchmarker=h2load`. Only
two benchmarks are currently available.
Additional configuration options to enable verbose debugging are provided:
```
$ ./configure --debug-http2 --debug-nghttp2
$ NODE_DEBUG=http2 ./node
```
The `--debug-http2` configuration option enables verbose debug statements
from the `src/node_http2_*` files. The `--debug-nghttp2` enables the nghttp
library's own verbose debug output. The `NODE_DEBUG=http2` enables JS-level
debug output.
The following illustrates as simple HTTP/2 server and client interaction:
(The HTTP/2 client and server support both plain text and TLS connections)
```jt client = http2.connect('http://localhost:80');
const req = client.request({ ':path': '/some/path' });
req.on('data', (chunk) => { /* do something with the data */ });
req.on('end', () => {
client.destroy();
});
// Plain text (non-TLS server)
const server = http2.createServer();
server.on('stream', (stream, requestHeaders) => {
stream.respond({ ':status': 200 });
stream.write('hello ');
stream.end('world');
});
server.listen(80);
```
```js
const http2 = require('http2');
const client = http2.connect('http://localhost');
```
Author: Anna Henningsen <anna@addaleax.net>
Author: Colin Ihrig <cjihrig@gmail.com>
Author: Daniel Bevenius <daniel.bevenius@gmail.com>
Author: James M Snell <jasnell@gmail.com>
Author: Jun Mukai
Author: Kelvin Jin
Author: Matteo Collina <matteo.collina@gmail.com>
Author: Robert Kowalski <rok@kowalski.gd>
Author: Santiago Gimeno <santiago.gimeno@gmail.com>
Author: Sebastiaan Deckers <sebdeckers83@gmail.com>
Author: Yosuke Furukawa <yosuke.furukawa@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/14239
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2017-07-17 19:17:16 +02:00
|
|
|
'src/node_http2.h',
|
2017-08-25 21:45:00 +02:00
|
|
|
'src/node_http2_state.h',
|
2013-08-11 00:26:11 +02:00
|
|
|
'src/node_internals.h',
|
2011-08-15 18:35:48 +02:00
|
|
|
'src/node_javascript.h',
|
2016-06-18 01:39:05 +02:00
|
|
|
'src/node_mutex.h',
|
2017-03-13 23:17:57 +01:00
|
|
|
'src/node_platform.h',
|
2017-08-08 00:53:24 +02:00
|
|
|
'src/node_perf.h',
|
|
|
|
'src/node_perf_common.h',
|
2011-08-15 18:35:48 +02:00
|
|
|
'src/node_root_certs.h',
|
|
|
|
'src/node_version.h',
|
2012-10-08 21:24:08 +02:00
|
|
|
'src/node_watchdog.h',
|
2013-06-11 12:52:27 +02:00
|
|
|
'src/node_wrap.h',
|
2016-02-04 02:16:10 +01:00
|
|
|
'src/node_revert.h',
|
build, i18n: improve Intl build, add "--with-intl"
The two main goals of this change are:
- To make it easier to build the Intl option using ICU (particularly,
using a newer ICU than v8/Chromium's version)
- To enable a much smaller ICU build with only English support The goal
here is to get node.js binaries built this way by default so that the
Intl API can be used. Additional data can be added at execution time
(see Readme and wiki)
More details are at https://github.com/joyent/node/pull/7719
In particular, this change adds the "--with-intl=" configure option to
provide more ways of building "Intl":
- "full-icu" picks up an ICU from deps/icu
- "small-icu" is similar, but builds only English
- "system-icu" uses pkg-config to find an installed ICU
- "none" does nothing (no Intl)
For Windows builds, the "full-icu" or "small-icu" options are added to
vcbuild.bat.
Note that the existing "--with-icu-path" option is not removed from
configure, but may not be used alongside the new option.
Wiki changes have already been made on
https://github.com/joyent/node/wiki/Installation
and a new page created at
https://github.com/joyent/node/wiki/Intl
(marked as provisional until this change lands.)
Summary of changes:
* README.md : doc updates
* .gitignore : added "deps/icu" as this is the location where ICU is
unpacked to.
* Makefile : added the tools/icu/* files to cpplint, but excluded a
problematic file.
* configure : added the "--with-intl" option mentioned above.
Calculate at config time the list of ICU source files to use and data
packaging options.
* node.gyp : add the new files src/node_i18n.cc/.h as well as ICU
linkage.
* src/node.cc : add call into
node::i18n::InitializeICUDirectory(icu_data_dir) as well as new
--icu-data-dir option and NODE_ICU_DATA env variable to configure ICU
data loading. This loading is only relevant in the "small"
configuration.
* src/node_i18n.cc : new source file for the above Initialize..
function, to setup ICU as needed.
* tools/icu : new directory with some tools needed for this build.
* tools/icu/icu-generic.gyp : new .gyp file that builds ICU in some new
ways, both on unix/mac and windows.
* tools/icu/icu-system.gyp : new .gyp file to build node against a
pkg-config detected ICU.
* tools/icu/icu_small.json : new config file for the "English-only" small
build.
* tools/icu/icutrim.py : new tool for trimming down ICU data. Reads the
above .json file.
* tools/icu/iculslocs.cc : new tool for repairing ICU data manifests
after trim operation.
* tools/icu/no-op.cc : dummy file to force .gyp into using a C++ linker.
* vcbuild.bat : added small-icu and full-icu options, to call into
configure.
* Fixed toolset dependencies, see
https://github.com/joyent/node/pull/7719#issuecomment-54641687
Note that because of a bug in gyp {CC,CXX}_host must also be set.
Otherwise gcc/g++ will be used by default for part of the build.
Reviewed-by: Trevor Norris <trev.norris@gmail.com>
Reviewed-by: Fedor Indutny <fedor@indutny.com>
2014-09-05 07:03:24 +02:00
|
|
|
'src/node_i18n.h',
|
2011-08-15 18:35:48 +02:00
|
|
|
'src/pipe_wrap.h',
|
2012-05-16 18:04:24 +02:00
|
|
|
'src/tty_wrap.h',
|
|
|
|
'src/tcp_wrap.h',
|
|
|
|
'src/udp_wrap.h',
|
2017-11-14 13:34:52 +01:00
|
|
|
'src/req_wrap.h',
|
|
|
|
'src/req_wrap-inl.h',
|
2013-05-02 00:40:43 +02:00
|
|
|
'src/string_bytes.h',
|
stream_base: introduce StreamBase
StreamBase is an improved way to write C++ streams. The class itself is
for separting `StreamWrap` (with the methods like `.writeAsciiString`,
`.writeBuffer`, `.writev`, etc) from the `HandleWrap` class, making
possible to write abstract C++ streams that are not bound to any uv
socket.
The following methods are important part of the abstraction (which
mimics libuv's stream API):
* Events:
* `OnAlloc(size_t size, uv_buf_t*)`
* `OnRead(ssize_t nread, const uv_buf_t*, uv_handle_type pending)`
* `OnAfterWrite(WriteWrap*)`
* Wrappers:
* `DoShutdown(ShutdownWrap*)`
* `DoTryWrite(uv_buf_t** bufs, size_t* count)`
* `DoWrite(WriteWrap*, uv_buf_t*, size_t count, uv_stream_t* handle)`
* `Error()`
* `ClearError()`
The implementation should provide all of these methods, thus providing
the access to the underlying resource (be it uv handle, TLS socket, or
anything else).
A C++ stream may consume the input of another stream by replacing the
event callbacks and proxying the writes. This kind of API is actually
used now for the TLSWrap implementation, making it possible to wrap TLS
stream into another TLS stream. Thus legacy API calls are no longer
required in `_tls_wrap.js`.
PR-URL: https://github.com/iojs/io.js/pull/840
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
2015-02-22 19:59:07 +01:00
|
|
|
'src/stream_base.h',
|
2015-02-25 18:43:14 +01:00
|
|
|
'src/stream_base-inl.h',
|
2011-08-15 18:35:48 +02:00
|
|
|
'src/stream_wrap.h',
|
2017-01-17 08:12:08 +01:00
|
|
|
'src/tracing/agent.h',
|
|
|
|
'src/tracing/node_trace_buffer.h',
|
|
|
|
'src/tracing/node_trace_writer.h',
|
2017-10-30 13:45:10 +01:00
|
|
|
'src/tracing/trace_event.h',
|
2013-08-11 00:26:11 +02:00
|
|
|
'src/util.h',
|
|
|
|
'src/util-inl.h',
|
2011-08-15 18:35:48 +02:00
|
|
|
'deps/http_parser/http_parser.h',
|
2015-04-03 01:13:43 +02:00
|
|
|
'deps/v8/include/v8.h',
|
|
|
|
'deps/v8/include/v8-debug.h',
|
2011-09-05 01:01:53 +02:00
|
|
|
# javascript files to make for an even more pleasant IDE experience
|
|
|
|
'<@(library_files)',
|
2011-10-28 12:10:24 +02:00
|
|
|
# node.gyp is added to the project by default.
|
|
|
|
'common.gypi',
|
2017-02-02 23:23:49 +01:00
|
|
|
'<(SHARED_INTERMEDIATE_DIR)/node_javascript.cc',
|
2011-08-05 01:40:07 +02:00
|
|
|
],
|
|
|
|
|
2017-11-06 10:30:29 +01:00
|
|
|
'variables': {
|
|
|
|
'openssl_system_ca_path%': '',
|
|
|
|
},
|
|
|
|
|
2011-08-05 01:40:07 +02:00
|
|
|
'defines': [
|
2015-01-08 13:05:51 +01:00
|
|
|
'NODE_ARCH="<(target_arch)"',
|
|
|
|
'NODE_PLATFORM="<(OS)"',
|
|
|
|
'NODE_WANT_INTERNALS=1',
|
2015-07-01 23:47:37 +02:00
|
|
|
# Warn when using deprecated V8 APIs.
|
|
|
|
'V8_DEPRECATION_WARNINGS=1',
|
2017-11-06 10:30:29 +01:00
|
|
|
'NODE_OPENSSL_SYSTEM_CERT_PATH="<(openssl_system_ca_path)"',
|
2011-08-04 02:01:30 +02:00
|
|
|
],
|
2017-11-02 05:19:16 +01:00
|
|
|
'conditions': [
|
|
|
|
[ 'node_shared=="true" and node_module_version!="" and OS!="win"', {
|
|
|
|
'product_extension': '<(shlib_suffix)',
|
2017-11-08 09:41:09 +01:00
|
|
|
}],
|
2017-12-05 01:07:53 +01:00
|
|
|
['node_shared=="true" and OS=="aix"', {
|
|
|
|
'product_name': 'node_base',
|
|
|
|
}],
|
2017-11-08 09:41:09 +01:00
|
|
|
[ 'v8_enable_inspector==1', {
|
|
|
|
'defines': [
|
|
|
|
'HAVE_INSPECTOR=1',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'src/inspector_agent.cc',
|
|
|
|
'src/inspector_io.cc',
|
|
|
|
'src/inspector_js_api.cc',
|
|
|
|
'src/inspector_socket.cc',
|
|
|
|
'src/inspector_socket_server.cc',
|
|
|
|
'src/inspector_agent.h',
|
|
|
|
'src/inspector_io.h',
|
|
|
|
'src/inspector_socket.h',
|
|
|
|
'src/inspector_socket_server.h',
|
|
|
|
],
|
|
|
|
'dependencies': [
|
|
|
|
'v8_inspector_compress_protocol_json#host',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)/include', # for inspector
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)',
|
|
|
|
],
|
|
|
|
}, {
|
|
|
|
'defines': [ 'HAVE_INSPECTOR=0' ]
|
|
|
|
}],
|
|
|
|
[ 'OS=="win"', {
|
|
|
|
'sources': [
|
|
|
|
'src/backtrace_win32.cc',
|
2017-08-23 09:52:59 +02:00
|
|
|
],
|
|
|
|
'conditions': [
|
2017-12-05 01:07:53 +01:00
|
|
|
[ 'node_intermediate_lib_type!="static_library"', {
|
2017-08-23 09:52:59 +02:00
|
|
|
'sources': [
|
|
|
|
'src/res/node.rc',
|
|
|
|
],
|
|
|
|
}],
|
2017-11-08 09:41:09 +01:00
|
|
|
],
|
|
|
|
'defines!': [
|
|
|
|
'NODE_PLATFORM="win"',
|
|
|
|
],
|
|
|
|
'defines': [
|
|
|
|
'FD_SETSIZE=1024',
|
|
|
|
# we need to use node's preferred "win32" rather than gyp's preferred "win"
|
|
|
|
'NODE_PLATFORM="win32"',
|
2018-01-23 01:17:21 +01:00
|
|
|
# Stop <windows.h> from defining macros that conflict with
|
|
|
|
# std::min() and std::max(). We don't use <windows.h> (much)
|
|
|
|
# but we still inherit it from uv.h.
|
|
|
|
'NOMINMAX',
|
2017-11-08 09:41:09 +01:00
|
|
|
'_UNICODE=1',
|
|
|
|
],
|
|
|
|
'libraries': [ '-lpsapi.lib' ]
|
|
|
|
}, { # POSIX
|
|
|
|
'defines': [ '__POSIX__' ],
|
|
|
|
'sources': [ 'src/backtrace_posix.cc' ],
|
|
|
|
}],
|
2017-12-05 01:07:53 +01:00
|
|
|
[ 'node_use_etw=="true"', {
|
|
|
|
'defines': [ 'HAVE_ETW=1' ],
|
|
|
|
'dependencies': [ 'node_etw' ],
|
|
|
|
'include_dirs': [
|
|
|
|
'src',
|
|
|
|
'tools/msvs/genfiles',
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)' # for node_natives.h
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'src/node_win32_etw_provider.h',
|
|
|
|
'src/node_win32_etw_provider-inl.h',
|
|
|
|
'src/node_win32_etw_provider.cc',
|
|
|
|
'src/node_dtrace.cc',
|
|
|
|
'tools/msvs/genfiles/node_etw_provider.h',
|
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
['node_intermediate_lib_type != "static_library"', {
|
|
|
|
'sources': [
|
|
|
|
'tools/msvs/genfiles/node_etw_provider.rc',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'node_use_perfctr=="true"', {
|
|
|
|
'defines': [ 'HAVE_PERFCTR=1' ],
|
|
|
|
'dependencies': [ 'node_perfctr' ],
|
|
|
|
'include_dirs': [
|
|
|
|
'src',
|
|
|
|
'tools/msvs/genfiles',
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)' # for node_natives.h
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'src/node_win32_perfctr_provider.h',
|
|
|
|
'src/node_win32_perfctr_provider.cc',
|
|
|
|
'src/node_counters.cc',
|
|
|
|
'src/node_counters.h',
|
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
['node_intermediate_lib_type != "static_library"', {
|
|
|
|
'sources': [
|
|
|
|
'tools/msvs/genfiles/node_perfctr_provider.rc',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'node_use_lttng=="true"', {
|
|
|
|
'defines': [ 'HAVE_LTTNG=1' ],
|
|
|
|
'include_dirs': [ '<(SHARED_INTERMEDIATE_DIR)' ],
|
|
|
|
'libraries': [ '-llttng-ust' ],
|
|
|
|
'include_dirs': [
|
|
|
|
'src',
|
|
|
|
'tools/msvs/genfiles',
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)' # for node_natives.h
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'src/node_lttng.cc'
|
|
|
|
],
|
|
|
|
}],
|
2017-11-08 09:41:09 +01:00
|
|
|
[ 'node_use_dtrace=="true"', {
|
|
|
|
'defines': [ 'HAVE_DTRACE=1' ],
|
|
|
|
'dependencies': [
|
|
|
|
'node_dtrace_header',
|
|
|
|
'specialize_node_d',
|
|
|
|
],
|
|
|
|
'include_dirs': [ '<(SHARED_INTERMEDIATE_DIR)' ],
|
|
|
|
#
|
|
|
|
# DTrace is supported on linux, solaris, mac, and bsd. There are
|
|
|
|
# three object files associated with DTrace support, but they're
|
|
|
|
# not all used all the time:
|
|
|
|
#
|
|
|
|
# node_dtrace.o all configurations
|
|
|
|
# node_dtrace_ustack.o not supported on mac and linux
|
|
|
|
# node_dtrace_provider.o All except OS X. "dtrace -G" is not
|
|
|
|
# used on OS X.
|
2018-01-23 11:49:25 +01:00
|
|
|
#
|
|
|
|
# Note that node_dtrace_provider.cc and node_dtrace_ustack.cc do not
|
|
|
|
# actually exist. They're listed here to trick GYP into linking the
|
|
|
|
# corresponding object files into the final "node" executable. These
|
|
|
|
# object files are generated by "dtrace -G" using custom actions
|
|
|
|
# below, and the GYP-generated Makefiles will properly build them when
|
|
|
|
# needed.
|
|
|
|
#
|
2017-11-08 09:41:09 +01:00
|
|
|
'sources': [ 'src/node_dtrace.cc' ],
|
|
|
|
'conditions': [
|
|
|
|
[ 'OS=="linux"', {
|
|
|
|
'sources': [
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)/node_dtrace_provider.o'
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
[ 'OS!="mac" and OS!="linux"', {
|
|
|
|
'sources': [
|
2018-01-23 11:49:25 +01:00
|
|
|
'src/node_dtrace_ustack.cc',
|
|
|
|
'src/node_dtrace_provider.cc',
|
2017-11-08 09:41:09 +01:00
|
|
|
]
|
|
|
|
}
|
|
|
|
] ]
|
|
|
|
} ],
|
|
|
|
[ 'node_use_openssl=="true"', {
|
|
|
|
'sources': [
|
|
|
|
'src/node_crypto.cc',
|
|
|
|
'src/node_crypto_bio.cc',
|
|
|
|
'src/node_crypto_clienthello.cc',
|
|
|
|
'src/node_crypto.h',
|
|
|
|
'src/node_crypto_bio.h',
|
|
|
|
'src/node_crypto_clienthello.h',
|
|
|
|
'src/tls_wrap.cc',
|
|
|
|
'src/tls_wrap.h'
|
|
|
|
],
|
|
|
|
}],
|
2017-11-02 05:19:16 +01:00
|
|
|
],
|
2011-08-04 02:01:30 +02:00
|
|
|
},
|
2016-04-18 16:10:20 +02:00
|
|
|
{
|
|
|
|
'target_name': 'mkssldef',
|
|
|
|
'type': 'none',
|
|
|
|
# TODO(bnoordhuis) Make all platforms export the same list of symbols.
|
|
|
|
# Teach mkssldef.py to generate linker maps that UNIX linkers understand.
|
|
|
|
'conditions': [
|
|
|
|
[ 'use_openssl_def==1', {
|
|
|
|
'variables': {
|
|
|
|
'mkssldef_flags': [
|
|
|
|
# Categories to export.
|
|
|
|
'-CAES,BF,BIO,DES,DH,DSA,EC,ECDH,ECDSA,ENGINE,EVP,HMAC,MD4,MD5,'
|
2016-07-10 16:08:42 +02:00
|
|
|
'NEXTPROTONEG,PSK,RC2,RC4,RSA,SHA,SHA0,SHA1,SHA256,SHA512,SOCK,'
|
2017-05-16 19:56:59 +02:00
|
|
|
'STDIO,TLSEXT,FP_API',
|
2016-04-18 16:10:20 +02:00
|
|
|
# Defines.
|
|
|
|
'-DWIN32',
|
|
|
|
# Symbols to filter from the export list.
|
|
|
|
'-X^DSO',
|
|
|
|
'-X^_',
|
|
|
|
'-X^private_',
|
2016-08-05 04:36:40 +02:00
|
|
|
# Base generated DEF on zlib.def
|
|
|
|
'-Bdeps/zlib/win32/zlib.def'
|
2016-04-18 16:10:20 +02:00
|
|
|
],
|
|
|
|
},
|
|
|
|
'conditions': [
|
|
|
|
['openssl_fips!=""', {
|
|
|
|
'variables': { 'mkssldef_flags': ['-DOPENSSL_FIPS'] },
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'mkssldef',
|
|
|
|
'inputs': [
|
|
|
|
'deps/openssl/openssl/util/libeay.num',
|
|
|
|
'deps/openssl/openssl/util/ssleay.num',
|
|
|
|
],
|
|
|
|
'outputs': ['<(SHARED_INTERMEDIATE_DIR)/openssl.def'],
|
|
|
|
'action': [
|
|
|
|
'python',
|
|
|
|
'tools/mkssldef.py',
|
|
|
|
'<@(mkssldef_flags)',
|
|
|
|
'-o',
|
|
|
|
'<@(_outputs)',
|
|
|
|
'<@(_inputs)',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
},
|
2012-06-12 01:23:17 +02:00
|
|
|
# generate ETW header and resource files
|
|
|
|
{
|
|
|
|
'target_name': 'node_etw',
|
|
|
|
'type': 'none',
|
|
|
|
'conditions': [
|
2017-12-05 01:07:53 +01:00
|
|
|
[ 'node_use_etw=="true"', {
|
2012-06-12 01:23:17 +02:00
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'node_etw',
|
|
|
|
'inputs': [ 'src/res/node_etw_provider.man' ],
|
2012-10-26 01:51:46 +02:00
|
|
|
'outputs': [
|
2013-01-03 23:36:04 +01:00
|
|
|
'tools/msvs/genfiles/node_etw_provider.rc',
|
|
|
|
'tools/msvs/genfiles/node_etw_provider.h',
|
|
|
|
'tools/msvs/genfiles/node_etw_providerTEMP.BIN',
|
2012-10-26 01:51:46 +02:00
|
|
|
],
|
2013-01-03 23:36:04 +01:00
|
|
|
'action': [ 'mc <@(_inputs) -h tools/msvs/genfiles -r tools/msvs/genfiles' ]
|
2012-06-12 01:23:17 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
} ]
|
|
|
|
]
|
|
|
|
},
|
2012-11-21 00:27:22 +01:00
|
|
|
# generate perf counter header and resource files
|
|
|
|
{
|
|
|
|
'target_name': 'node_perfctr',
|
|
|
|
'type': 'none',
|
|
|
|
'conditions': [
|
2017-12-05 01:07:53 +01:00
|
|
|
[ 'node_use_perfctr=="true"', {
|
2012-11-21 00:27:22 +01:00
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'node_perfctr_man',
|
|
|
|
'inputs': [ 'src/res/node_perfctr_provider.man' ],
|
|
|
|
'outputs': [
|
2013-01-03 23:36:04 +01:00
|
|
|
'tools/msvs/genfiles/node_perfctr_provider.h',
|
|
|
|
'tools/msvs/genfiles/node_perfctr_provider.rc',
|
|
|
|
'tools/msvs/genfiles/MSG00001.BIN',
|
2012-11-21 00:27:22 +01:00
|
|
|
],
|
|
|
|
'action': [ 'ctrpp <@(_inputs) '
|
2013-01-03 23:36:04 +01:00
|
|
|
'-o tools/msvs/genfiles/node_perfctr_provider.h '
|
|
|
|
'-rc tools/msvs/genfiles/node_perfctr_provider.rc'
|
2012-11-21 00:27:22 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
],
|
|
|
|
} ]
|
|
|
|
]
|
|
|
|
},
|
2016-06-29 23:20:06 +02:00
|
|
|
{
|
|
|
|
'target_name': 'v8_inspector_compress_protocol_json',
|
|
|
|
'type': 'none',
|
|
|
|
'toolsets': ['host'],
|
|
|
|
'conditions': [
|
2017-01-17 20:49:26 +01:00
|
|
|
[ 'v8_enable_inspector==1', {
|
2016-06-29 23:20:06 +02:00
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'v8_inspector_compress_protocol_json',
|
|
|
|
'process_outputs_as_sources': 1,
|
|
|
|
'inputs': [
|
2017-01-17 20:49:26 +01:00
|
|
|
'deps/v8/src/inspector/js_protocol.json',
|
2016-06-29 23:20:06 +02:00
|
|
|
],
|
|
|
|
'outputs': [
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)/v8_inspector_protocol_json.h',
|
|
|
|
],
|
|
|
|
'action': [
|
|
|
|
'python',
|
|
|
|
'tools/compress_json.py',
|
|
|
|
'<@(_inputs)',
|
|
|
|
'<@(_outputs)',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
},
|
2011-08-04 02:01:30 +02:00
|
|
|
{
|
|
|
|
'target_name': 'node_js2c',
|
|
|
|
'type': 'none',
|
|
|
|
'toolsets': ['host'],
|
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'node_js2c',
|
2017-02-02 23:23:49 +01:00
|
|
|
'process_outputs_as_sources': 1,
|
2011-08-04 02:01:30 +02:00
|
|
|
'inputs': [
|
|
|
|
'<@(library_files)',
|
2012-03-14 16:34:44 +01:00
|
|
|
'./config.gypi',
|
2011-08-04 02:01:30 +02:00
|
|
|
],
|
|
|
|
'outputs': [
|
2017-02-02 23:23:49 +01:00
|
|
|
'<(SHARED_INTERMEDIATE_DIR)/node_javascript.cc',
|
2011-08-04 02:01:30 +02:00
|
|
|
],
|
2011-08-05 01:40:07 +02:00
|
|
|
'conditions': [
|
2017-12-05 01:07:53 +01:00
|
|
|
[ 'node_use_dtrace=="false" and node_use_etw=="false"', {
|
2013-10-28 20:18:59 +01:00
|
|
|
'inputs': [ 'src/notrace_macros.py' ]
|
2013-07-24 12:53:28 +02:00
|
|
|
}],
|
2017-12-05 01:07:53 +01:00
|
|
|
[ 'node_use_lttng=="false"', {
|
2015-01-22 13:35:16 +01:00
|
|
|
'inputs': [ 'src/nolttng_macros.py' ]
|
|
|
|
}],
|
2017-12-05 01:07:53 +01:00
|
|
|
[ 'node_use_perfctr=="false"', {
|
2017-10-09 12:47:07 +02:00
|
|
|
'inputs': [ 'src/noperfctr_macros.py' ]
|
2012-11-21 00:27:22 +01:00
|
|
|
}]
|
|
|
|
],
|
2013-07-24 12:53:28 +02:00
|
|
|
'action': [
|
2016-01-24 17:01:07 +01:00
|
|
|
'python',
|
2013-07-24 12:53:28 +02:00
|
|
|
'tools/js2c.py',
|
|
|
|
'<@(_outputs)',
|
|
|
|
'<@(_inputs)',
|
|
|
|
],
|
2011-08-04 02:01:30 +02:00
|
|
|
},
|
|
|
|
],
|
|
|
|
}, # end node_js2c
|
2012-03-28 19:26:10 +02:00
|
|
|
{
|
|
|
|
'target_name': 'node_dtrace_header',
|
|
|
|
'type': 'none',
|
|
|
|
'conditions': [
|
2014-12-11 18:04:31 +01:00
|
|
|
[ 'node_use_dtrace=="true" and OS!="linux"', {
|
2012-03-28 19:26:10 +02:00
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'node_dtrace_header',
|
|
|
|
'inputs': [ 'src/node_provider.d' ],
|
|
|
|
'outputs': [ '<(SHARED_INTERMEDIATE_DIR)/node_provider.h' ],
|
|
|
|
'action': [ 'dtrace', '-h', '-xnolibs', '-s', '<@(_inputs)',
|
|
|
|
'-o', '<@(_outputs)' ]
|
|
|
|
}
|
|
|
|
]
|
2014-12-09 20:02:39 +01:00
|
|
|
} ],
|
|
|
|
[ 'node_use_dtrace=="true" and OS=="linux"', {
|
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'node_dtrace_header',
|
|
|
|
'inputs': [ 'src/node_provider.d' ],
|
|
|
|
'outputs': [ '<(SHARED_INTERMEDIATE_DIR)/node_provider.h' ],
|
|
|
|
'action': [ 'dtrace', '-h', '-s', '<@(_inputs)',
|
|
|
|
'-o', '<@(_outputs)' ]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
} ],
|
2012-03-28 19:26:10 +02:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'target_name': 'node_dtrace_provider',
|
|
|
|
'type': 'none',
|
|
|
|
'conditions': [
|
2013-10-28 20:18:59 +01:00
|
|
|
[ 'node_use_dtrace=="true" and OS!="mac" and OS!="linux"', {
|
2012-03-28 19:26:10 +02:00
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'node_dtrace_provider_o',
|
|
|
|
'inputs': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_dir)/<(node_lib_target_name)/src/node_dtrace.o',
|
2012-03-28 19:26:10 +02:00
|
|
|
],
|
|
|
|
'outputs': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_dir)/<(node_lib_target_name)/src/node_dtrace_provider.o'
|
2012-03-28 19:26:10 +02:00
|
|
|
],
|
2013-04-17 01:18:07 +02:00
|
|
|
'action': [ 'dtrace', '-G', '-xnolibs', '-s', 'src/node_provider.d',
|
2014-12-03 07:55:53 +01:00
|
|
|
'<@(_inputs)', '-o', '<@(_outputs)' ]
|
2012-03-28 19:26:10 +02:00
|
|
|
}
|
|
|
|
]
|
2013-10-28 20:18:59 +01:00
|
|
|
}],
|
|
|
|
[ 'node_use_dtrace=="true" and OS=="linux"', {
|
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'node_dtrace_provider_o',
|
|
|
|
'inputs': [ 'src/node_provider.d' ],
|
|
|
|
'outputs': [
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)/node_dtrace_provider.o'
|
|
|
|
],
|
|
|
|
'action': [
|
|
|
|
'dtrace', '-C', '-G', '-s', '<@(_inputs)', '-o', '<@(_outputs)'
|
|
|
|
],
|
2014-12-03 07:55:53 +01:00
|
|
|
}
|
2013-10-28 20:18:59 +01:00
|
|
|
],
|
|
|
|
}],
|
2012-03-28 19:26:10 +02:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'target_name': 'node_dtrace_ustack',
|
|
|
|
'type': 'none',
|
|
|
|
'conditions': [
|
2013-10-28 20:18:59 +01:00
|
|
|
[ 'node_use_dtrace=="true" and OS!="mac" and OS!="linux"', {
|
2012-03-28 19:26:10 +02:00
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'node_dtrace_ustack_constants',
|
|
|
|
'inputs': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(v8_base)'
|
2012-03-28 19:26:10 +02:00
|
|
|
],
|
|
|
|
'outputs': [
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)/v8constants.h'
|
|
|
|
],
|
|
|
|
'action': [
|
|
|
|
'tools/genv8constants.py',
|
|
|
|
'<@(_outputs)',
|
|
|
|
'<@(_inputs)'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'action_name': 'node_dtrace_ustack',
|
|
|
|
'inputs': [
|
|
|
|
'src/v8ustack.d',
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)/v8constants.h'
|
|
|
|
],
|
|
|
|
'outputs': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_dir)/<(node_lib_target_name)/src/node_dtrace_ustack.o'
|
2012-03-28 19:26:10 +02:00
|
|
|
],
|
2013-02-26 08:57:12 +01:00
|
|
|
'conditions': [
|
2017-03-27 11:48:21 +02:00
|
|
|
[ 'target_arch=="ia32" or target_arch=="arm"', {
|
2013-02-26 08:57:12 +01:00
|
|
|
'action': [
|
|
|
|
'dtrace', '-32', '-I<(SHARED_INTERMEDIATE_DIR)', '-Isrc',
|
|
|
|
'-C', '-G', '-s', 'src/v8ustack.d', '-o', '<@(_outputs)',
|
|
|
|
]
|
|
|
|
} ],
|
|
|
|
[ 'target_arch=="x64"', {
|
|
|
|
'action': [
|
|
|
|
'dtrace', '-64', '-I<(SHARED_INTERMEDIATE_DIR)', '-Isrc',
|
|
|
|
'-C', '-G', '-s', 'src/v8ustack.d', '-o', '<@(_outputs)',
|
|
|
|
]
|
|
|
|
} ],
|
2012-03-28 19:26:10 +02:00
|
|
|
]
|
2014-02-20 17:52:26 +01:00
|
|
|
},
|
2012-03-28 19:26:10 +02:00
|
|
|
]
|
|
|
|
} ],
|
|
|
|
]
|
2014-02-20 17:52:26 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'target_name': 'specialize_node_d',
|
|
|
|
'type': 'none',
|
|
|
|
'conditions': [
|
|
|
|
[ 'node_use_dtrace=="true"', {
|
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'specialize_node_d',
|
|
|
|
'inputs': [
|
|
|
|
'src/node.d'
|
|
|
|
],
|
|
|
|
'outputs': [
|
|
|
|
'<(PRODUCT_DIR)/node.d',
|
|
|
|
],
|
|
|
|
'action': [
|
|
|
|
'tools/specialize_node_d.py',
|
|
|
|
'<@(_outputs)',
|
|
|
|
'<@(_inputs)',
|
|
|
|
'<@(OS)',
|
|
|
|
'<@(target_arch)',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
} ],
|
|
|
|
]
|
2015-03-19 02:01:45 +01:00
|
|
|
},
|
2017-12-05 01:07:53 +01:00
|
|
|
{
|
|
|
|
# When using shared lib to build executable in Windows, in order to avoid
|
|
|
|
# filename collision, the executable name is node-win.exe. Need to rename
|
|
|
|
# it back to node.exe
|
|
|
|
'target_name': 'rename_node_bin_win',
|
|
|
|
'type': 'none',
|
|
|
|
'dependencies': [
|
|
|
|
'<(node_core_target_name)',
|
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
[ 'OS=="win" and node_intermediate_lib_type=="shared_library"', {
|
|
|
|
'actions': [
|
|
|
|
{
|
|
|
|
'action_name': 'rename_node_bin_win',
|
|
|
|
'inputs': [
|
|
|
|
'<(PRODUCT_DIR)/<(node_core_target_name)-win.exe'
|
|
|
|
],
|
|
|
|
'outputs': [
|
|
|
|
'<(PRODUCT_DIR)/<(node_core_target_name).exe',
|
|
|
|
],
|
|
|
|
'action': [
|
|
|
|
'mv', '<@(_inputs)', '<@(_outputs)',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
} ],
|
|
|
|
]
|
|
|
|
},
|
2015-03-19 02:01:45 +01:00
|
|
|
{
|
|
|
|
'target_name': 'cctest',
|
|
|
|
'type': 'executable',
|
2016-10-18 16:41:26 +02:00
|
|
|
|
|
|
|
'dependencies': [
|
|
|
|
'<(node_core_target_name)',
|
2017-12-05 01:07:53 +01:00
|
|
|
'rename_node_bin_win',
|
2016-10-18 16:41:26 +02:00
|
|
|
'deps/gtest/gtest.gyp:gtest',
|
|
|
|
'node_js2c#host',
|
|
|
|
'node_dtrace_header',
|
|
|
|
'node_dtrace_ustack',
|
|
|
|
'node_dtrace_provider',
|
|
|
|
],
|
|
|
|
|
|
|
|
'variables': {
|
2017-10-16 15:34:42 +02:00
|
|
|
'obj_path': '<(obj_dir)/<(node_lib_target_name)/src',
|
|
|
|
'obj_gen_path': '<(obj_dir)/<(node_lib_target_name)/gen',
|
|
|
|
'obj_tracing_path': '<(obj_dir)/<(node_lib_target_name)/src/tracing',
|
|
|
|
'obj_suffix': 'o',
|
|
|
|
'obj_separator': '/',
|
2016-10-18 16:41:26 +02:00
|
|
|
'conditions': [
|
|
|
|
['OS=="win"', {
|
2017-10-16 15:34:42 +02:00
|
|
|
'obj_suffix': 'obj',
|
2016-10-18 16:41:26 +02:00
|
|
|
}],
|
2017-04-18 08:20:56 +02:00
|
|
|
['GENERATOR=="ninja"', {
|
2017-10-16 15:34:42 +02:00
|
|
|
'obj_path': '<(obj_dir)/src',
|
|
|
|
'obj_gen_path': '<(obj_dir)/gen',
|
|
|
|
'obj_tracing_path': '<(obj_dir)/src/tracing',
|
|
|
|
'obj_separator': '/<(node_lib_target_name).',
|
2017-04-18 08:20:56 +02:00
|
|
|
}, {
|
|
|
|
'conditions': [
|
|
|
|
['OS=="win"', {
|
2017-10-16 15:34:42 +02:00
|
|
|
'obj_path': '<(obj_dir)/<(node_lib_target_name)',
|
|
|
|
'obj_gen_path': '<(obj_dir)/<(node_lib_target_name)',
|
|
|
|
'obj_tracing_path': '<(obj_dir)/<(node_lib_target_name)',
|
2017-04-18 08:20:56 +02:00
|
|
|
}],
|
|
|
|
['OS=="aix"', {
|
2017-10-16 15:34:42 +02:00
|
|
|
'obj_path': '<(obj_dir)/<(node_lib_target_name)/src',
|
|
|
|
'obj_gen_path': '<(obj_dir)/<(node_lib_target_name)/gen',
|
|
|
|
'obj_tracing_path':
|
|
|
|
'<(obj_dir)/<(node_lib_target_name)/src/tracing',
|
2017-04-18 08:20:56 +02:00
|
|
|
}],
|
|
|
|
]}
|
|
|
|
]
|
|
|
|
],
|
2016-10-18 16:41:26 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
'includes': [
|
|
|
|
'node.gypi'
|
|
|
|
],
|
|
|
|
|
2015-03-19 02:01:45 +01:00
|
|
|
'include_dirs': [
|
|
|
|
'src',
|
2016-10-18 16:41:26 +02:00
|
|
|
'tools/msvs/genfiles',
|
2016-11-09 23:19:35 +01:00
|
|
|
'deps/v8/include',
|
2016-10-18 16:41:26 +02:00
|
|
|
'deps/cares/include',
|
|
|
|
'deps/uv/include',
|
|
|
|
'<(SHARED_INTERMEDIATE_DIR)', # for node_natives.h
|
|
|
|
],
|
|
|
|
|
2017-07-25 12:20:40 +02:00
|
|
|
'defines': [ 'NODE_WANT_INTERNALS=1' ],
|
2016-10-18 16:41:26 +02:00
|
|
|
|
2015-03-19 02:01:45 +01:00
|
|
|
'sources': [
|
2017-10-22 08:16:50 +02:00
|
|
|
'test/cctest/node_module_reg.cc',
|
2017-08-25 21:45:00 +02:00
|
|
|
'test/cctest/node_test_fixture.cc',
|
|
|
|
'test/cctest/test_aliased_buffer.cc',
|
2017-04-05 16:05:55 +02:00
|
|
|
'test/cctest/test_base64.cc',
|
2017-12-26 01:17:25 +01:00
|
|
|
'test/cctest/test_node_postmortem_metadata.cc',
|
2017-03-21 08:06:43 +01:00
|
|
|
'test/cctest/test_environment.cc',
|
2016-10-18 16:41:26 +02:00
|
|
|
'test/cctest/test_util.cc',
|
2017-03-25 18:33:29 +01:00
|
|
|
'test/cctest/test_url.cc'
|
2016-10-18 16:41:26 +02:00
|
|
|
],
|
|
|
|
|
2017-12-05 01:07:53 +01:00
|
|
|
'libraries': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_path)<(obj_separator)async_wrap.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)handle_wrap.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)env.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node_buffer.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node_debug_options.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node_i18n.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node_perf.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node_platform.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node_url.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)util.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)string_bytes.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)string_search.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)stream_base.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node_constants.<(obj_suffix)',
|
|
|
|
'<(obj_tracing_path)<(obj_separator)agent.<(obj_suffix)',
|
|
|
|
'<(obj_tracing_path)<(obj_separator)node_trace_buffer.<(obj_suffix)',
|
|
|
|
'<(obj_tracing_path)<(obj_separator)node_trace_writer.<(obj_suffix)',
|
|
|
|
'<(obj_tracing_path)<(obj_separator)trace_event.<(obj_suffix)',
|
|
|
|
'<(obj_gen_path)<(obj_separator)node_javascript.<(obj_suffix)',
|
2015-03-19 02:01:45 +01:00
|
|
|
],
|
2016-02-07 17:47:14 +01:00
|
|
|
|
|
|
|
'conditions': [
|
2017-11-08 09:41:09 +01:00
|
|
|
[ 'node_use_openssl=="true"', {
|
2018-01-04 09:50:50 +01:00
|
|
|
'conditions': [
|
|
|
|
['node_target_type!="static_library"', {
|
|
|
|
'libraries': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_path)<(obj_separator)node_crypto.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node_crypto_bio.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node_crypto_clienthello.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)tls_wrap.<(obj_suffix)',
|
2018-01-04 09:50:50 +01:00
|
|
|
],
|
|
|
|
}],
|
2017-08-15 09:17:02 +02:00
|
|
|
],
|
2017-12-04 22:08:15 +01:00
|
|
|
'defines': [
|
|
|
|
'HAVE_OPENSSL=1',
|
|
|
|
],
|
2017-08-15 09:17:02 +02:00
|
|
|
}],
|
2017-12-05 01:07:53 +01:00
|
|
|
[ 'node_use_perfctr=="true"', {
|
|
|
|
'defines': [ 'HAVE_PERFCTR=1' ],
|
|
|
|
'libraries': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_path)<(obj_separator)node_counters.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)'
|
|
|
|
'node_win32_perfctr_provider.<(obj_suffix)',
|
2017-12-05 01:07:53 +01:00
|
|
|
],
|
|
|
|
}],
|
2017-01-17 20:49:26 +01:00
|
|
|
['v8_enable_inspector==1', {
|
2016-02-07 17:47:14 +01:00
|
|
|
'sources': [
|
2016-11-09 23:19:35 +01:00
|
|
|
'test/cctest/test_inspector_socket.cc',
|
|
|
|
'test/cctest/test_inspector_socket_server.cc'
|
2016-07-06 22:16:35 +02:00
|
|
|
],
|
2018-01-04 09:50:50 +01:00
|
|
|
'conditions': [
|
|
|
|
['node_target_type!="static_library"', {
|
|
|
|
'libraries': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_path)<(obj_separator)inspector_agent.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)inspector_io.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)inspector_js_api.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)inspector_socket.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)inspector_socket_server.<(obj_suffix)',
|
2018-01-04 09:50:50 +01:00
|
|
|
],
|
|
|
|
}],
|
2017-11-08 09:41:09 +01:00
|
|
|
],
|
|
|
|
'defines': [
|
|
|
|
'HAVE_INSPECTOR=1',
|
|
|
|
],
|
|
|
|
}],
|
2018-01-04 09:50:50 +01:00
|
|
|
[ 'node_use_dtrace=="true" and node_target_type!="static_library"', {
|
2017-11-08 09:41:09 +01:00
|
|
|
'libraries': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_path)<(obj_separator)node_dtrace.<(obj_suffix)',
|
2017-11-15 10:48:01 +01:00
|
|
|
],
|
|
|
|
'conditions': [
|
|
|
|
['OS!="mac" and OS!="linux"', {
|
|
|
|
'libraries': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_path)<(obj_separator)node_dtrace_provider.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)node_dtrace_ustack.<(obj_suffix)',
|
2017-11-15 10:48:01 +01:00
|
|
|
]
|
|
|
|
}],
|
|
|
|
['OS=="linux"', {
|
|
|
|
'libraries': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(SHARED_INTERMEDIATE_DIR)<(obj_separator)'
|
|
|
|
'node_dtrace_provider.<(obj_suffix)',
|
2017-11-15 10:48:01 +01:00
|
|
|
]
|
|
|
|
}],
|
|
|
|
],
|
2017-12-05 01:07:53 +01:00
|
|
|
}, {
|
|
|
|
'conditions': [
|
|
|
|
[ 'node_use_etw=="true" and OS=="win"', {
|
|
|
|
'libraries': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_path)<(obj_separator)node_dtrace.<(obj_suffix)',
|
|
|
|
'<(obj_path)<(obj_separator)'
|
|
|
|
'node_win32_etw_provider.<(obj_suffix)',
|
2017-12-05 01:07:53 +01:00
|
|
|
],
|
|
|
|
}]
|
|
|
|
]
|
2016-03-27 01:17:55 +01:00
|
|
|
}],
|
2018-01-04 09:50:50 +01:00
|
|
|
[ 'OS=="win" and node_target_type!="static_library"', {
|
2017-11-08 09:41:09 +01:00
|
|
|
'libraries': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_path)<(obj_separator)backtrace_win32.<(obj_suffix)',
|
2018-01-04 09:50:50 +01:00
|
|
|
],
|
2017-11-08 09:41:09 +01:00
|
|
|
}, {
|
2018-01-04 09:50:50 +01:00
|
|
|
'conditions': [
|
|
|
|
['node_target_type!="static_library"', {
|
|
|
|
'libraries': [
|
2017-10-16 15:34:42 +02:00
|
|
|
'<(obj_path)<(obj_separator)backtrace_posix.<(obj_suffix)',
|
2018-01-04 09:50:50 +01:00
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
2016-03-27 01:17:55 +01:00
|
|
|
}],
|
2016-10-18 16:41:26 +02:00
|
|
|
['OS=="solaris"', {
|
|
|
|
'ldflags': [ '-I<(SHARED_INTERMEDIATE_DIR)' ]
|
|
|
|
}],
|
2016-02-07 17:47:14 +01:00
|
|
|
]
|
2017-11-23 11:39:19 +01:00
|
|
|
}
|
2015-09-29 16:22:00 +02:00
|
|
|
], # end targets
|
|
|
|
|
|
|
|
'conditions': [
|
2017-12-05 01:07:53 +01:00
|
|
|
[ 'OS=="aix" and node_shared=="true"', {
|
2017-08-23 09:52:59 +02:00
|
|
|
'targets': [
|
|
|
|
{
|
2017-12-05 01:07:53 +01:00
|
|
|
'target_name': 'node_aix_shared',
|
|
|
|
'type': 'shared_library',
|
2017-08-23 09:52:59 +02:00
|
|
|
'product_name': '<(node_core_target_name)',
|
2017-12-05 01:07:53 +01:00
|
|
|
'ldflags': [ '--shared' ],
|
|
|
|
'product_extension': '<(shlib_suffix)',
|
2016-11-14 14:43:41 +01:00
|
|
|
'conditions': [
|
2016-12-13 20:49:00 +01:00
|
|
|
['target_arch=="ppc64"', {
|
|
|
|
'ldflags': [
|
2017-12-05 01:07:53 +01:00
|
|
|
'-Wl,-blibpath:/usr/lib:/lib:'
|
|
|
|
'/opt/freeware/lib/pthread/ppc64'
|
2016-12-13 20:49:00 +01:00
|
|
|
],
|
|
|
|
}],
|
|
|
|
['target_arch=="ppc"', {
|
|
|
|
'ldflags': [
|
|
|
|
'-Wl,-blibpath:/usr/lib:/lib:/opt/freeware/lib/pthread'
|
|
|
|
],
|
|
|
|
}]
|
2016-11-14 14:43:41 +01:00
|
|
|
],
|
2017-12-05 01:07:53 +01:00
|
|
|
'includes': [
|
|
|
|
'node.gypi'
|
|
|
|
],
|
|
|
|
'dependencies': [ '<(node_lib_target_name)' ],
|
2015-09-29 16:22:00 +02:00
|
|
|
'include_dirs': [
|
|
|
|
'src',
|
|
|
|
'deps/v8/include',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'<@(library_files)',
|
|
|
|
'common.gypi',
|
|
|
|
],
|
|
|
|
},
|
2017-12-05 01:07:53 +01:00
|
|
|
]
|
2015-09-29 16:22:00 +02:00
|
|
|
}], # end aix section
|
|
|
|
], # end conditions block
|
2011-08-04 02:01:30 +02:00
|
|
|
}
|