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

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

Issue 615083006: Fix clang tooling build on Linux (shim CMake in LLVM tree). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor formatting tweak Created 6 years, 2 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 # This line is read by update.sh and other scripts in tools/clang/scripts 1 # This line is read by update.sh and other scripts in tools/clang/scripts
2 # Note: The spaces are significant. 2 # Note: The spaces are significant.
3 set(LIBRARYNAME BlinkGCPlugin_12) 3 set(LIBRARYNAME BlinkGCPlugin_12)
4 4
5 add_llvm_loadable_module("lib${LIBRARYNAME}" 5 add_llvm_loadable_module("lib${LIBRARYNAME}"
6 BlinkGCPlugin.cpp 6 BlinkGCPlugin.cpp
7 Edge.cpp 7 Edge.cpp
8 RecordInfo.cpp 8 RecordInfo.cpp
9 ) 9 )
10 10
11 install(TARGETS "lib${LIBRARYNAME}" LIBRARY DESTINATION lib) 11 cr_install(TARGETS "lib${LIBRARYNAME}" LIBRARY DESTINATION lib)
12 12
13 cr_add_test(blink_gc_plugin_test 13 cr_add_test(blink_gc_plugin_test
14 ${CMAKE_CURRENT_SOURCE_DIR}/tests/test.sh 14 ${CMAKE_CURRENT_SOURCE_DIR}/tests/test.sh
15 ${LLVM_BUILD_DIR}/bin/clang 15 ${CMAKE_BINARY_DIR}/bin/clang
16 $<TARGET_FILE:lib${LIBRARYNAME}> 16 $<TARGET_FILE:lib${LIBRARYNAME}>
17 ) 17 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698