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

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 issues in last patch. Created 5 years, 6 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
« no previous file with comments | « lib/Bitcode/NaCl/TestUtils/NaClSimpleRecordFuzzer.cpp ('k') | tools/LLVMBuild.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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-stress) 51 add_llvm_tool_subdirectory(llvm-stress)
52 add_llvm_tool_subdirectory(llvm-mcmarkup) 52 add_llvm_tool_subdirectory(llvm-mcmarkup)
53 53
54 add_llvm_tool_subdirectory(verify-uselistorder) 54 add_llvm_tool_subdirectory(verify-uselistorder)
55 55
56 add_llvm_tool_subdirectory(llvm-symbolizer) 56 add_llvm_tool_subdirectory(llvm-symbolizer)
57 add_llvm_tool_subdirectory(pnacl-abicheck) 57 add_llvm_tool_subdirectory(pnacl-abicheck)
58 add_llvm_tool_subdirectory(pnacl-bcanalyzer) 58 add_llvm_tool_subdirectory(pnacl-bcanalyzer)
59 add_llvm_tool_subdirectory(pnacl-bccompress) 59 add_llvm_tool_subdirectory(pnacl-bccompress)
60 add_llvm_tool_subdirectory(pnacl-bcdis) 60 add_llvm_tool_subdirectory(pnacl-bcdis)
61 add_llvm_tool_subdirectory(pnacl-bcfuzz)
61 add_llvm_tool_subdirectory(pnacl-freeze) 62 add_llvm_tool_subdirectory(pnacl-freeze)
62 add_llvm_tool_subdirectory(pnacl-thaw) 63 add_llvm_tool_subdirectory(pnacl-thaw)
63 64
64 add_llvm_tool_subdirectory(llvm-c-test) 65 add_llvm_tool_subdirectory(llvm-c-test)
65 66
66 add_llvm_tool_subdirectory(obj2yaml) 67 add_llvm_tool_subdirectory(obj2yaml)
67 add_llvm_tool_subdirectory(yaml2obj) 68 add_llvm_tool_subdirectory(yaml2obj)
68 69
69 add_llvm_tool_subdirectory(llvm-go) 70 add_llvm_tool_subdirectory(llvm-go)
70 71
(...skipping 16 matching lines...) Expand all
87 if( NOT LLVM_INCLUDE_TOOLS STREQUAL "bootstrap-only" ) 88 if( NOT LLVM_INCLUDE_TOOLS STREQUAL "bootstrap-only" )
88 add_llvm_external_project(lld) 89 add_llvm_external_project(lld)
89 add_llvm_external_project(lldb) 90 add_llvm_external_project(lldb)
90 91
91 # Automatically add remaining sub-directories containing a 'CMakeLists.txt' 92 # Automatically add remaining sub-directories containing a 'CMakeLists.txt'
92 # file as external projects. 93 # file as external projects.
93 add_llvm_implicit_external_projects() 94 add_llvm_implicit_external_projects()
94 endif() 95 endif()
95 96
96 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE) 97 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)
OLDNEW
« no previous file with comments | « lib/Bitcode/NaCl/TestUtils/NaClSimpleRecordFuzzer.cpp ('k') | tools/LLVMBuild.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698