@@ -1394,6 +1394,11 @@ def gcc_version_ge(version_checked):
|
1394 | 1394 | def configure_node_lib_files(o): |
1395 | 1395 | o['variables']['node_library_files'] = SearchFiles('lib', 'js') |
1396 | 1396 | |
| 1397 | +def configure_node_cctest_sources(o): |
| 1398 | +o['variables']['node_cctest_sources'] = [ 'src/node_snapshot_stub.cc' ] + \ |
| 1399 | +SearchFiles('test/cctest', 'cc') + \ |
| 1400 | +SearchFiles('test/cctest', 'h') |
| 1401 | + |
1397 | 1402 | def configure_node(o): |
1398 | 1403 | if options.dest_os == 'android': |
1399 | 1404 | o['variables']['OS'] = 'android' |
@@ -2207,6 +2212,7 @@ def make_bin_override():
|
2207 | 2212 | |
2208 | 2213 | configure_node(output) |
2209 | 2214 | configure_node_lib_files(output) |
| 2215 | +configure_node_cctest_sources(output) |
2210 | 2216 | configure_napi(output) |
2211 | 2217 | configure_library('zlib', output) |
2212 | 2218 | configure_library('http_parser', output) |
|