OLD | NEW |
1 set(LIBRARYNAME BlinkGCPlugin) | 1 set(LIBRARYNAME BlinkGCPlugin) |
2 | 2 |
3 set(plugin_sources | 3 set(plugin_sources |
4 BlinkGCPlugin.cpp | 4 BlinkGCPlugin.cpp |
5 BlinkGCPluginConsumer.cpp | 5 BlinkGCPluginConsumer.cpp |
6 CheckDispatchVisitor.cpp | 6 CheckDispatchVisitor.cpp |
7 CheckFieldsVisitor.cpp | 7 CheckFieldsVisitor.cpp |
8 CheckFinalizerVisitor.cpp | 8 CheckFinalizerVisitor.cpp |
9 CheckGCRootsVisitor.cpp | 9 CheckGCRootsVisitor.cpp |
| 10 CheckSingletonVisitor.cpp |
10 CheckTraceVisitor.cpp | 11 CheckTraceVisitor.cpp |
11 CollectVisitor.cpp | 12 CollectVisitor.cpp |
12 Config.cpp | 13 Config.cpp |
13 DiagnosticsReporter.cpp | 14 DiagnosticsReporter.cpp |
14 Edge.cpp | 15 Edge.cpp |
15 RecordInfo.cpp) | 16 RecordInfo.cpp) |
16 | 17 |
17 if(WIN32) | 18 if(WIN32) |
18 # Clang doesn't support loadable modules on Windows. Unfortunately, building | 19 # Clang doesn't support loadable modules on Windows. Unfortunately, building |
19 # the plugin as a static library and linking clang against it doesn't work. | 20 # the plugin as a static library and linking clang against it doesn't work. |
(...skipping 30 matching lines...) Expand all Loading... |
50 python tests/legacy_naming/test.py | 51 python tests/legacy_naming/test.py |
51 ${CMAKE_BINARY_DIR}/bin/clang | 52 ${CMAKE_BINARY_DIR}/bin/clang |
52 $<TARGET_FILE:lib${LIBRARYNAME}> | 53 $<TARGET_FILE:lib${LIBRARYNAME}> |
53 ) | 54 ) |
54 cr_add_test(blink_gc_plugin_test | 55 cr_add_test(blink_gc_plugin_test |
55 python tests/test.py | 56 python tests/test.py |
56 ${CMAKE_BINARY_DIR}/bin/clang | 57 ${CMAKE_BINARY_DIR}/bin/clang |
57 $<TARGET_FILE:lib${LIBRARYNAME}> | 58 $<TARGET_FILE:lib${LIBRARYNAME}> |
58 ) | 59 ) |
59 endif() | 60 endif() |
OLD | NEW |