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

Unified Diff: src/platform/vboot_reference/tests/Makefile

Issue 564020: Data structure and interface for manipulating and handing firmware images for verified boot. (Closed)
Patch Set: Fix spaces etc. Created 10 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 side-by-side diff with in-line comments
Download patch
Index: src/platform/vboot_reference/tests/Makefile
diff --git a/src/platform/vboot_reference/tests/Makefile b/src/platform/vboot_reference/tests/Makefile
index ba4c4a64f22df46b2a8f7c3b66a76500693a596b..3dc6a416177e1088642f407d3b1236ad235687ee 100644
--- a/src/platform/vboot_reference/tests/Makefile
+++ b/src/platform/vboot_reference/tests/Makefile
@@ -4,12 +4,16 @@
SRCS=sha_tests.c
OBJS=$(SRCS:.c=.o)
-LIBS=$(TOP)/crypto/libcrypto.a $(TOP)/common/libcommon.a
+LIBS=$(TOP)/utils/firmware_image.o $(TOP)/crypto/libcrypto.a $(TOP)/common/libcommon.a \
+ $(TOP)/utils/file_keys.o
-tests: sha_tests
+tests: sha_tests firmware_image_tests
sha_tests: sha_tests.c
- $(CC) $(CFLAGS) -DNDEBUG $(INCLUDES) $< -o $@ $(LIBS)
+ $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS)
+
+firmware_image_tests: firmware_image_tests.c
+ $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS)
clean:
- rm -f $(OBJS) sha_tests verify_data signature_digest
+ rm -f $(OBJS) sha_tests verify_data signature_digest firmware_image_tests
« no previous file with comments | « src/platform/vboot_reference/include/firmware_image.h ('k') | src/platform/vboot_reference/tests/firmware_image_tests.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698