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

Side by Side Diff: tools/clang/rewrite_scoped_refptr/Makefile

Issue 446203003: scoped_refptr implicit conversion cleanup tool. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/clang/rewrite_scoped_refptr/RewriteScopedRefptr.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 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 # 4 #
5 # This Makefile requires the LLVM build system. In order to build this tool, 5 # This Makefile requires the LLVM build system. In order to build this tool,
6 # please run tools/clang/scripts/build_tool.py. 6 # please run tools/clang/scripts/build_tool.py.
7 7
8 CLANG_LEVEL := ../.. 8 CLANG_LEVEL := ../..
9 9
10 TOOLNAME = empty_string 10 TOOLNAME = rewrite_scoped_refptr
11 11
12 NO_INSTALL = 1 12 NO_INSTALL = 1
13 13
14 include $(CLANG_LEVEL)/../../Makefile.config 14 include $(CLANG_LEVEL)/../../Makefile.config
15 15
16 LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option 16 LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
17 USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a \ 17 USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a \
18 clangTooling.a clangParse.a clangSema.a \ 18 clangTooling.a clangParse.a clangSema.a \
19 clangStaticAnalyzerFrontend.a clangStaticAnalyzerCheckers.a \ 19 clangStaticAnalyzerFrontend.a clangStaticAnalyzerCheckers.a \
20 clangStaticAnalyzerCore.a clangAnalysis.a clangRewriteFrontend.a \ 20 clangStaticAnalyzerCore.a clangAnalysis.a clangRewriteFrontend.a \
21 clangRewrite.a clangEdit.a clangAST.a clangLex.a clangBasic.a \ 21 clangRewrite.a clangEdit.a clangAST.a clangLex.a clangBasic.a \
22 clangASTMatchers.a 22 clangASTMatchers.a
23 23
24 include $(CLANG_LEVEL)/Makefile 24 include $(CLANG_LEVEL)/Makefile
25 25
OLDNEW
« no previous file with comments | « no previous file | tools/clang/rewrite_scoped_refptr/RewriteScopedRefptr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698