-
Notifications
You must be signed in to change notification settings - Fork 59
/
tests.gyp
39 lines (39 loc) · 981 Bytes
/
tests.gyp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
'targets': [{
'target_name': 'tests',
'type': 'executable',
'xcode_settings': {},
'dependencies': [
'googletest.gyp:googletest_main',
'libadblockplus.gyp:libadblockplus'
],
'include_dirs': [
'<(libv8_include_dir)'
],
'sources': [
'test/AsyncExecutor.cpp',
'test/BaseJsTest.h',
'test/BaseJsTest.cpp',
'test/AppInfoJsObject.cpp',
'test/ConsoleJsObject.cpp',
'test/DefaultFileSystem.cpp',
'test/FileSystemJsObject.cpp',
'test/FilterEngineTest.h',
'test/FilterEngine.cpp',
'test/GlobalJsObject.cpp',
'test/HarnessTest.cpp',
'test/JsEngine.cpp',
'test/JsValue.cpp',
'test/PreloadedSubscriptions.cpp',
'test/ReferrerMapping.cpp',
'test/Utils.cpp',
'test/WebRequest.cpp'
],
'msvs_settings': {
'VCLinkerTool': {
'SubSystem': '1', # Console
'EntryPointSymbol': 'mainCRTStartup',
},
},
}]
}