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

Side by Side Diff: tests/Makefile

Issue 2866006: Move old vkernel code out of vboot_firmware. (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: Created 10 years, 6 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
« no previous file with comments | « no previous file | utility/Makefile » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 INCLUDES += -I./include \ 5 INCLUDES += -I./include \
6 -I$(FWDIR)/lib/include \ 6 -I$(FWDIR)/lib/include \
7 -I$(FWDIR)/lib/cgptlib/include \ 7 -I$(FWDIR)/lib/cgptlib/include \
8 -I$(FWDIR)/lib/cryptolib/include \ 8 -I$(FWDIR)/lib/cryptolib/include \
9 -I../host/include \ 9 -I../host/include \
10 -I../misclibs/include \ 10 -I../misclibs/include \
11 -I../vboot_firmware/lib/include\ 11 -I../vboot_firmware/lib/include\
12 -I../vkernel/include 12 -I../vkernel/include
13 IMAGE_LIBS = $(BUILD)/vkernel/kernel_image.o 13 IMAGE_LIBS = $(BUILD)/vkernel/kernel_image.o \
14 » » $(BUILD)/vkernel/kernel_image_fw.o
14 UTIL_LIBS = $(BUILD)/misclibs/file_keys.o $(BUILD)/misclibs/signature_digest.o 15 UTIL_LIBS = $(BUILD)/misclibs/file_keys.o $(BUILD)/misclibs/signature_digest.o
15 LIBS = $(IMAGE_LIBS) $(UTIL_LIBS) $(HOSTLIB) $(FWLIB) -lcrypto 16 LIBS = $(IMAGE_LIBS) $(UTIL_LIBS) $(HOSTLIB) $(FWLIB) -lcrypto
16 BUILD_ROOT = ${BUILD}/tests 17 BUILD_ROOT = ${BUILD}/tests
17 18
18 TEST_NAMES = big_kernel_tests \ 19 TEST_NAMES = big_kernel_tests \
19 cgptlib_test \ 20 cgptlib_test \
20 kernel_image_tests \ 21 kernel_image_tests \
21 kernel_rollback_tests \ 22 kernel_rollback_tests \
22 kernel_splicing_tests \ 23 kernel_splicing_tests \
23 kernel_verify_benchmark \ 24 kernel_verify_benchmark \
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 # Splicing tests 137 # Splicing tests
137 #${BUILD_ROOT}/firmware_splicing_tests 138 #${BUILD_ROOT}/firmware_splicing_tests
138 ${BUILD_ROOT}/kernel_splicing_tests 139 ${BUILD_ROOT}/kernel_splicing_tests
139 # Rollback Tests 140 # Rollback Tests
140 #${BUILD_ROOT}/firmware_rollback_tests 141 #${BUILD_ROOT}/firmware_rollback_tests
141 ${BUILD_ROOT}/kernel_rollback_tests 142 ${BUILD_ROOT}/kernel_rollback_tests
142 # Helper Library Tests 143 # Helper Library Tests
143 ${BUILD_ROOT}/cgptlib_test 144 ${BUILD_ROOT}/cgptlib_test
144 # Tool tests 145 # Tool tests
145 ./run_cgpt_tests.sh ${BUILD}/cgpt/cgpt 146 ./run_cgpt_tests.sh ${BUILD}/cgpt/cgpt
OLDNEW
« no previous file with comments | « no previous file | utility/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698