First instruction executed in the test runner!

Fixes #7.
This commit is contained in:
Ben Vanik
2013-01-27 17:49:32 -08:00
parent bba99d4a22
commit 12d9c3d15e
24 changed files with 335 additions and 39 deletions

1
third_party/sparsehash vendored Submodule

Submodule third_party/sparsehash added at 09af64be1e

30
third_party/sparsehash.gypi vendored Normal file
View File

@@ -0,0 +1,30 @@
# Copyright 2013 Ben Vanik. All Rights Reserved.
{
'targets': [
{
'target_name': 'sparsehash',
'type': 'static_library',
'direct_dependent_settings': {
'include_dirs': [
'sparsehash/src/',
],
},
'include_dirs': [
'sparsehash/src/',
],
'sources': [
],
'conditions': [
['OS == "win"', {
'sources!': [
'sparsehash/src/windows/port.cc',
],
}],
],
}
]
}