| OLD | NEW | 
|    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  Loading... | 
|  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 | 
| OLD | NEW |