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

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

Issue 1692803002: Remove Emscripten support (Closed) Base URL: https://chromium.googlesource.com/a/native_client/pnacl-llvm.git@master
Patch Set: Created 4 years, 10 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/bugpoint/bugpoint.cpp ('k') | tools/opt/opt.cpp » ('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 10 # @LOCALMOD-BEGIN
11 NaClAnalysis 11 NaClAnalysis
12 NaClBitWriter 12 NaClBitWriter
13 NaClBitReader 13 NaClBitReader
14 NaClTransforms 14 NaClTransforms
15 MinSFITransforms 15 MinSFITransforms
16 JSBackend
17 # @LOCALMOD-END 16 # @LOCALMOD-END
18 InstCombine 17 InstCombine
19 Instrumentation 18 Instrumentation
20 MC 19 MC
21 ObjCARCOpts 20 ObjCARCOpts
22 ScalarOpts 21 ScalarOpts
23 Support 22 Support
24 Target 23 Target
25 TransformUtils 24 TransformUtils
26 Vectorize 25 Vectorize
(...skipping 15 matching lines...) Expand all
42 export_executable_symbols(opt) 41 export_executable_symbols(opt)
43 42
44 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) 43 if(WITH_POLLY AND LINK_POLLY_INTO_TOOLS)
45 target_link_libraries(opt Polly) 44 target_link_libraries(opt Polly)
46 if(POLLY_LINK_LIBS) 45 if(POLLY_LINK_LIBS)
47 foreach(lib ${POLLY_LINK_LIBS}) 46 foreach(lib ${POLLY_LINK_LIBS})
48 target_link_libraries(opt ${lib}) 47 target_link_libraries(opt ${lib})
49 endforeach(lib) 48 endforeach(lib)
50 endif(POLLY_LINK_LIBS) 49 endif(POLLY_LINK_LIBS)
51 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS) 50 endif(WITH_POLLY AND LINK_POLLY_INTO_TOOLS)
OLDNEW
« no previous file with comments | « tools/bugpoint/bugpoint.cpp ('k') | tools/opt/opt.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698