Home | History | Annotate | Download | only in Car

Lines Matching refs:API

19 # $(car_module_api_dir) - dir to store API files
24 # $(api_check_current_msg_file) - file containing error message for current API check
25 # $(api_check_last_msg_file) - file containing error message for last SDK API check
54 -api $(car_module_api_file) \
92 -api $(car_module_system_api_file) \
107 # Check public API
109 .PHONY: $(car_module)-check-public-api
110 checkapi: $(car_module)-check-public-api
111 $(car_module): $(car_module)-check-public-api
118 # Check that the API we're building hasn't broken the last-released SDK version
121 $(eval $(call check-api, \
131 $(car_module)-check-public-api, \
135 # Check that the API we're building hasn't changed from the not-yet-released
137 $(eval $(call check-api, \
147 $(car_module)-check-public-api, \
150 .PHONY: update-$(car_module)-api
151 update-$(car_module)-api: PRIVATE_API_DIR := $(car_module_api_dir)
152 update-$(car_module)-api: PRIVATE_MODULE := $(car_module)
153 update-$(car_module)-api: PRIVATE_REMOVED_API_FILE := $(car_module_removed_file)
154 update-$(car_module)-api: $(car_module_api_file) | $(ACP)
160 # Run this update API task on the update-car-api task
161 update-car-api: update-$(car_module)-api
166 # Check system API
168 .PHONY: $(car_module)-check-system-api
169 checkapi: $(car_module)-check-system-api
170 $(car_module): $(car_module)-check-system-api
177 # Check that the API we're building hasn't broken the last-released SDK version
180 $(eval $(call check-api, \
190 $(car_module)-check-system-api, \
194 # Check that the API we're building hasn't changed from the not-yet-released
196 $(eval $(call check-api, \
206 $(car_module)-check-system-api, \
209 .PHONY: update-$(car_module)-system-api
210 update-$(car_module)-system-api: PRIVATE_API_DIR := $(car_module_api_dir)
211 update-$(car_module)-system-api: PRIVATE_MODULE := $(car_module)
212 update-$(car_module)-system-api: PRIVATE_REMOVED_API_FILE := $(car_module_system_removed_file)
213 update-$(car_module)-system-api: $(car_module_system_api_file) | $(ACP)
219 # Run this update API task on the update-car-api task
220 update-car-api: update-$(car_module)-system-api