Home | History | Annotate | Download | only in tasks

Lines Matching refs:API

17 # api compatibility or added apis illegally.
20 # skip api check for PDK buid
34 .PHONY: check-public-api
35 checkapi : check-public-api
37 .PHONY: update-api
40 # Note that since INTERNAL_PLATFORM_API_FILE is the byproduct of api-stubs module,
42 # we need to add api-stubs as additional dependency of the api check.
44 # Check that the API we're building hasn't broken the last-released
46 $(eval $(call check-api, \
50 frameworks/base/api/removed.txt, \
56 check-public-api, \
57 $(call doc-timestamp-for,api-stubs) \
60 # Check that the API we're building hasn't changed from the not-yet-released
62 $(eval $(call check-api, \
64 frameworks/base/api/current.txt, \
66 frameworks/base/api/removed.txt, \
73 check-public-api, \
74 $(call doc-timestamp-for,api-stubs) \
77 .PHONY: update-public-api
78 update-public-api: $(INTERNAL_PLATFORM_API_FILE) | $(ACP)
80 $(hide) $(ACP) $(INTERNAL_PLATFORM_API_FILE) frameworks/base/api/current.txt
82 $(hide) $(ACP) $(INTERNAL_PLATFORM_REMOVED_API_FILE) frameworks/base/api/removed.txt
84 update-api : update-public-api
86 #####################Check System API#####################
87 .PHONY: check-system-api
88 checkapi : check-system-api
90 # Check that the System API we're building hasn't broken the last-released
92 $(eval $(call check-api, \
96 frameworks/base/api/system-removed.txt, \
102 check-system-api, \
103 $(call doc-timestamp-for,system-api-stubs) \
106 # Check that the System API we're building hasn't changed from the not-yet-released
108 $(eval $(call check-api, \
110 frameworks/base/api/system-current.txt, \
112 frameworks/base/api/system-removed.txt, \
119 check-system-api, \
120 $(call doc-timestamp-for,system-api-stubs) \
123 .PHONY: update-system-api
124 update-api : update-system-api
126 update-system-api: $(INTERNAL_PLATFORM_SYSTEM_API_FILE) | $(ACP)
128 $(hide) $(ACP) $(INTERNAL_PLATFORM_SYSTEM_API_FILE) frameworks/base/api/system-current.txt
130 $(hide) $(ACP) $(INTERNAL_PLATFORM_SYSTEM_REMOVED_API_FILE) frameworks/base/api/system-removed.txt
132 #####################Check Test API#####################
133 .PHONY: check-test-api
134 checkapi : check-test-api
136 # Check that the Test API we're building hasn't changed from the not-yet-released
138 # SDK's API because the test API is meant only for CTS which is always
140 $(eval $(call check-api, \
142 frameworks/base/api/test-current.txt, \
144 frameworks/base/api/test-removed.txt, \
151 check-test-api, \
152 $(call doc-timestamp-for,test-api-stubs) \
155 .PHONY: update-test-api
156 update-api : update-test-api
158 update-test-api: $(INTERNAL_PLATFORM_TEST_API_FILE) | $(ACP)
160 $(hide) $(ACP) $(INTERNAL_PLATFORM_TEST_API_FILE) frameworks/base/api/test-current.txt
162 $(hide) $(ACP) $(INTERNAL_PLATFORM_TEST_REMOVED_API_FILE) frameworks/base/api/test-removed.txt