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

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

Issue 2303003: Moved cgptlib into vboot_firmware (Closed) Base URL: ssh://gitrw.chromium.org/chromiumos
Patch Set: Created 10 years, 7 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 3b26005c86413745dda9a5dda103790b7027d318..7381d427177c67d8ba5a91539b1ca57e440f11f4 100644
--- a/src/platform/vboot_reference/tests/Makefile
+++ b/src/platform/vboot_reference/tests/Makefile
@@ -6,6 +6,7 @@ TOP ?= ../
CC ?= gcc
CFLAGS ?= -Wall -DNDEBUG -O3 -Werror
INCLUDES += -I./include \
+ -I$(FWDIR)/lib/cgptlib/include \
-I$(FWDIR)/lib/cryptolib/include \
-I../misclibs/include \
-I../vfirmware/include\
@@ -17,6 +18,7 @@ LIBS = $(IMAGE_LIBS) $(UTIL_LIBS) $(FWLIB) -lcrypto
TEST_BINS = big_firmware_tests \
big_kernel_tests \
+ cgptlib_test \
firmware_image_tests \
firmware_rollback_tests \
firmware_splicing_tests \
@@ -40,6 +42,9 @@ big_firmware_tests: big_firmware_tests.c rollback_index_mock.c test_common.c
big_kernel_tests: big_kernel_tests.c rollback_index_mock.c test_common.c
$(CC) $(CFLAGS) $(INCLUDES) $^ -o $@ $(LIBS)
+cgptlib_test: cgptlib_test.c quick_sort_test.c crc32_test.c
+ $(CC) $(CFLAGS) -ansi $(INCLUDES) $^ -o $@ $(LIBS)
+
firmware_image_tests: firmware_image_tests.c rollback_index_mock.c test_common.c
$(CC) $(CFLAGS) $(INCLUDES) $^ -o $@ $(LIBS)
« no previous file with comments | « src/platform/vboot_reference/cgptlib/tests/Makefile ('k') | src/platform/vboot_reference/tests/cgptlib_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698