Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(565)

Side by Side Diff: tools/clang/blink_gc_plugin/CMakeLists.txt

Issue 2696713003: blink_gc_plugin: detect singletons with embedded ScriptWrappables.
Patch Set: non-copying iteration Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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()
OLDNEW
« no previous file with comments | « tools/clang/blink_gc_plugin/BlinkGCPluginOptions.h ('k') | tools/clang/blink_gc_plugin/CheckSingletonVisitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698