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

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, 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
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
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-freeze) 61 add_llvm_tool_subdirectory(pnacl-freeze)
62 add_llvm_tool_subdirectory(pnacl-bcfuzz)
jvoung (off chromium) 2015/06/01 17:26:36 keep alphabetical -- modulo llvm stuff?
Karl 2015/06/01 22:40:56 Done.
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
71 add_llvm_tool_subdirectory(llvm-pdbdump) 72 add_llvm_tool_subdirectory(llvm-pdbdump)
(...skipping 15 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

Powered by Google App Engine
This is Rietveld 408576698