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

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

Issue 12746010: Implement clang tool that converts std::string("") to std::string(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update tool and rewriter to handle initializers. Created 7 years, 8 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4 #
5 # This Makefile requires the LLVM build system. In order to build this tool,
6 # please run tools/clang/scripts/build_tool.py.
7
8 CLANG_LEVEL := ../..
9
10 TOOLNAME = empty-string
11
12 NO_INSTALL = 1
13 TOOL_NO_EXPORTS = 1
14
15 include $(CLANG_LEVEL)/../../Makefile.config
16
17 LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc
18 USEDLIBS = clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
19 clangRewriteFrontend.a clangRewriteCore.a clangParse.a clangSema.a \
20 clangAnalysis.a clangAST.a clangASTMatchers.a clangEdit.a \
21 clangLex.a clangBasic.a
22
23 include $(CLANG_LEVEL)/Makefile
24
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698