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

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

Issue 7886056: Clang plugin that rewrites PostTask(_, NewRunnableMethod(...)) to PostTask(_, base::Bind(...)); (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 ##===- examples/PrintFunctionNames/Makefile ----------------*- Makefile -*-===##
2 #
3 # The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7 #
8 ##===----------------------------------------------------------------------===##
9
10 CLANG_LEVEL := ../..
11 LIBRARYNAME = TaskToBind
12
13 # If we don't need RTTI or EH, there's no reason to export anything
14 # from the plugin.
15 ifneq ($(REQUIRES_RTTI), 1)
16 ifneq ($(REQUIRES_EH), 1)
17 EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/TaskToBind.exports
18 endif
19 endif
20
21 LINK_LIBS_IN_SHARED = 0
22 SHARED_LIBRARY = 1
23
24 include $(CLANG_LEVEL)/Makefile
25
26 CXXFLAGS+=-g
27 ifeq ($(OS),Darwin)
28 LDFLAGS=-Wl,-undefined,dynamic_lookup
29 endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698