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

Unified Diff: tools/clang/blink_gc_plugin/CMakeLists.txt

Issue 2578103003: Add use-chromium-style-naming option to Blink GC plugin. (Closed)
Patch Set: Copy and paste tests Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: tools/clang/blink_gc_plugin/CMakeLists.txt
diff --git a/tools/clang/blink_gc_plugin/CMakeLists.txt b/tools/clang/blink_gc_plugin/CMakeLists.txt
index 009807b4164f92838d790d16f3a69df09407797a..c5101ea03355d3e9bf933117d4062bd84373848f 100644
--- a/tools/clang/blink_gc_plugin/CMakeLists.txt
+++ b/tools/clang/blink_gc_plugin/CMakeLists.txt
@@ -30,6 +30,11 @@ if(WIN32)
endforeach()
set_property(TARGET clang APPEND PROPERTY SOURCES ${absolute_sources})
+ # TODO(https://crbug.com/675879): Clean up after the Blink rename.
+ cr_add_test(blink_gc_plugin_legacy_test
+ python legacy_naming/tests/test.py
sof 2016/12/20 13:51:54 tests/legacy_naming/ ?
dcheng 2016/12/20 17:31:18 Done.
+ ${CMAKE_BINARY_DIR}/bin/clang
+ )
cr_add_test(blink_gc_plugin_test
python tests/test.py
${CMAKE_BINARY_DIR}/bin/clang
@@ -40,6 +45,12 @@ else()
cr_install(TARGETS "lib${LIBRARYNAME}" LIBRARY DESTINATION lib)
+ # TODO(https://crbug.com/675879): Clean up after the Blink rename.
+ cr_add_test(blink_gc_plugin_legacy_test
+ python tests/legacy_naming/test.py
+ ${CMAKE_BINARY_DIR}/bin/clang
+ $<TARGET_FILE:lib${LIBRARYNAME}>
+ )
cr_add_test(blink_gc_plugin_test
python tests/test.py
${CMAKE_BINARY_DIR}/bin/clang

Powered by Google App Engine
This is Rietveld 408576698