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

Unified Diff: tools/clang/CMakeLists.txt

Issue 1634593006: Add chrome clang tests as custom targets instead of tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/CMakeLists.txt
diff --git a/tools/clang/CMakeLists.txt b/tools/clang/CMakeLists.txt
index 21b5a9fcea7b3858f94f063bec8eefec465cf313..52ea9a10a52d6de0a43eb59699df66a847b99d34 100644
--- a/tools/clang/CMakeLists.txt
+++ b/tools/clang/CMakeLists.txt
@@ -28,19 +28,19 @@ link_directories("${CMAKE_SOURCE_DIR}/lib"
"${CMAKE_BINARY_DIR}/lib"
"${CMAKE_BINARY_DIR}/tools/clang/lib")
+# Tests for all enabled tools can be run by building this target.
+add_custom_target(cr-check-all COMMAND ${CMAKE_CTEST_COMMAND} -V)
+
# cr_add_test(
# name
# testprog
# arguments...
# )
function(cr_add_test name testprog)
- add_test(NAME ${name} COMMAND ${testprog} ${ARGN})
+ add_custom_target(${name} COMMAND ${testprog} ${ARGN})
add_dependencies(cr-check-all ${name})
endfunction(cr_add_test)
-# Tests for all enabled tools can be run by building this target.
-add_custom_target(cr-check-all COMMAND ${CMAKE_CTEST_COMMAND} -V)
-
function(cr_install)
install(${ARGN} COMPONENT chrome-tools OPTIONAL)
endfunction(cr_install)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698