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

Unified Diff: Makefile.standalone

Issue 800883006: Add ability to test parsing of bitcode records in Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/BitcodeMunge.h » ('j') | src/BitcodeMunge.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index c1c5c475a66de5d722a9dcaf5fd591ebfcc728e1..c0b13b9259b48c475ddd209a0df58eda40bb5391 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -114,7 +114,8 @@ SRCS = \
ifndef MINIMAL
SRCS += IceConverter.cpp \
- IceTypeConverter.cpp
+ IceTypeConverter.cpp \
+ BitcodeMunge.cpp
jvoung (off chromium) 2015/01/07 22:24:34 Could this be under the unittest directory, and th
Karl 2015/01/08 21:35:05 Done. Added CL flag GenerateUnitTestMessages, and
endif
OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS))
@@ -122,6 +123,10 @@ OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS))
UNITTEST_SRCS = \
IceELFSectionTest.cpp
+ifndef MINIMAL
+ UNITTEST_SRCS += IceParseInstsTest.cpp
+endif
+
UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS))
UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/llvm2ice.o,$(OBJS))
« no previous file with comments | « no previous file | src/BitcodeMunge.h » ('j') | src/BitcodeMunge.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698