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

Side by Side Diff: tools/CMakeLists.txt

Issue 1156103003: Initial implementation of a record-level bitcode fuzzer. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@fuzz
Patch Set: Fix nits. Created 5 years, 7 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 add_llvm_tool_subdirectory(llvm-config) 1 add_llvm_tool_subdirectory(llvm-config)
2 2
3 # Build polly before the tools: the tools link against polly when 3 # Build polly before the tools: the tools link against polly when
4 # LINK_POLLY_INTO_TOOLS is set. 4 # LINK_POLLY_INTO_TOOLS is set.
5 if(WITH_POLLY) 5 if(WITH_POLLY)
6 add_llvm_external_project(polly) 6 add_llvm_external_project(polly)
7 else(WITH_POLLY) 7 else(WITH_POLLY)
8 list(APPEND LLVM_IMPLICIT_PROJECT_IGNORE "${LLVM_MAIN_SRC_DIR}/tools/polly") 8 list(APPEND LLVM_IMPLICIT_PROJECT_IGNORE "${LLVM_MAIN_SRC_DIR}/tools/polly")
9 endif(WITH_POLLY) 9 endif(WITH_POLLY)
10 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 add_llvm_tool_subdirectory(llvm-mcmarkup) 51 add_llvm_tool_subdirectory(llvm-mcmarkup)
52 52
53 add_llvm_tool_subdirectory(verify-uselistorder) 53 add_llvm_tool_subdirectory(verify-uselistorder)
54 54
55 add_llvm_tool_subdirectory(llvm-symbolizer) 55 add_llvm_tool_subdirectory(llvm-symbolizer)
56 add_llvm_tool_subdirectory(pnacl-abicheck) 56 add_llvm_tool_subdirectory(pnacl-abicheck)
57 add_llvm_tool_subdirectory(pnacl-bcanalyzer) 57 add_llvm_tool_subdirectory(pnacl-bcanalyzer)
58 add_llvm_tool_subdirectory(pnacl-bccompress) 58 add_llvm_tool_subdirectory(pnacl-bccompress)
59 add_llvm_tool_subdirectory(pnacl-bcdis) 59 add_llvm_tool_subdirectory(pnacl-bcdis)
60 add_llvm_tool_subdirectory(pnacl-freeze) 60 add_llvm_tool_subdirectory(pnacl-freeze)
61 add_llvm_tool_subdirectory(pnacl-bcfuzz)
61 add_llvm_tool_subdirectory(pnacl-thaw) 62 add_llvm_tool_subdirectory(pnacl-thaw)
62 63
63 add_llvm_tool_subdirectory(llvm-c-test) 64 add_llvm_tool_subdirectory(llvm-c-test)
64 65
65 add_llvm_tool_subdirectory(obj2yaml) 66 add_llvm_tool_subdirectory(obj2yaml)
66 add_llvm_tool_subdirectory(yaml2obj) 67 add_llvm_tool_subdirectory(yaml2obj)
67 68
68 add_llvm_tool_subdirectory(llvm-go) 69 add_llvm_tool_subdirectory(llvm-go)
69 70
70 if(NOT CYGWIN AND LLVM_ENABLE_PIC) 71 if(NOT CYGWIN AND LLVM_ENABLE_PIC)
(...skipping 23 matching lines...) Expand all
94 if( NOT LLVM_INCLUDE_TOOLS STREQUAL "bootstrap-only" ) 95 if( NOT LLVM_INCLUDE_TOOLS STREQUAL "bootstrap-only" )
95 add_llvm_external_project(lld) 96 add_llvm_external_project(lld)
96 add_llvm_external_project(lldb) 97 add_llvm_external_project(lldb)
97 98
98 # Automatically add remaining sub-directories containing a 'CMakeLists.txt' 99 # Automatically add remaining sub-directories containing a 'CMakeLists.txt'
99 # file as external projects. 100 # file as external projects.
100 add_llvm_implicit_external_projects() 101 add_llvm_implicit_external_projects()
101 endif() 102 endif()
102 103
103 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE) 104 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698