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

Side by Side Diff: tools/opt/CMakeLists.txt

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: undo localmod Created 5 years, 9 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 | « tools/lto/Makefile ('k') | tools/opt/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 set(LLVM_LINK_COMPONENTS 1 set(LLVM_LINK_COMPONENTS
2 ${LLVM_TARGETS_TO_BUILD} 2 ${LLVM_TARGETS_TO_BUILD}
3 Analysis 3 Analysis
4 BitWriter 4 BitWriter
5 CodeGen 5 CodeGen
6 Core 6 Core
7 IPA 7 IPA
8 IPO 8 IPO
9 IRReader 9 IRReader
10 # @LOCALMOD-BEGIN
11 NaClAnalysis
12 NaClBitWriter
13 NaClBitReader
14 NaClTransforms
15 MinSFITransforms
16 # @LOCALMOD-END
10 InstCombine 17 InstCombine
11 Instrumentation 18 Instrumentation
12 MC 19 MC
13 ObjCARCOpts 20 ObjCARCOpts
14 ScalarOpts 21 ScalarOpts
15 Support 22 Support
16 Target 23 Target
17 TransformUtils 24 TransformUtils
18 Vectorize 25 Vectorize
19 ) 26 )
(...skipping 14 matching lines...) Expand all
34 set_target_properties(opt PROPERTIES ENABLE_EXPORTS 1) 41 set_target_properties(opt PROPERTIES ENABLE_EXPORTS 1)
35 42
36 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) 43 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS)
37 target_link_libraries(opt Polly) 44 target_link_libraries(opt Polly)
38 if(POLLY_LINK_LIBS) 45 if(POLLY_LINK_LIBS)
39 foreach(lib ${POLLY_LINK_LIBS}) 46 foreach(lib ${POLLY_LINK_LIBS})
40 target_link_libraries(opt ${lib}) 47 target_link_libraries(opt ${lib})
41 endforeach(lib) 48 endforeach(lib)
42 endif(POLLY_LINK_LIBS) 49 endif(POLLY_LINK_LIBS)
43 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) 50 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS)
OLDNEW
« no previous file with comments | « tools/lto/Makefile ('k') | tools/opt/LLVMBuild.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698