blob: 7a307b5de8592734661849e6312787c91e844b9b [file] [log] [blame]
Geremy Condracd4104e2013-03-26 18:19:12 +00001#
2# Maps an arbitrary tag [TAGNAME] with the string contents found in
William Roberts52fc95d2013-03-26 14:00:51 -07003# TARGET_BUILD_VARIANT. Common convention is to start TAGNAME with an @ and
Geremy Condracd4104e2013-03-26 18:19:12 +00004# name it after the base file name of the pem file.
5#
6# Each tag (section) then allows one to specify any string found in
7# TARGET_BUILD_VARIANT. Typcially this is user, eng, and userdebug. Another
William Roberts52fc95d2013-03-26 14:00:51 -07008# option is to use ALL which will match ANY TARGET_BUILD_VARIANT string.
Geremy Condracd4104e2013-03-26 18:19:12 +00009#
10
11[@PLATFORM]
Nick Kralevichc3c90522013-10-25 12:25:36 -070012ALL : $DEFAULT_SYSTEM_DEV_CERTIFICATE/platform.x509.pem
Geremy Condracd4104e2013-03-26 18:19:12 +000013
14[@MEDIA]
Nick Kralevichc3c90522013-10-25 12:25:36 -070015ALL : $DEFAULT_SYSTEM_DEV_CERTIFICATE/media.x509.pem
Geremy Condracd4104e2013-03-26 18:19:12 +000016
17[@SHARED]
Nick Kralevichc3c90522013-10-25 12:25:36 -070018ALL : $DEFAULT_SYSTEM_DEV_CERTIFICATE/shared.x509.pem
Geremy Condracd4104e2013-03-26 18:19:12 +000019
20# Example of ALL TARGET_BUILD_VARIANTS
21[@RELEASE]
Nick Kralevichc3c90522013-10-25 12:25:36 -070022ENG : $DEFAULT_SYSTEM_DEV_CERTIFICATE/testkey.x509.pem
23USER : $DEFAULT_SYSTEM_DEV_CERTIFICATE/testkey.x509.pem
24USERDEBUG : $DEFAULT_SYSTEM_DEV_CERTIFICATE/testkey.x509.pem
Geremy Condracd4104e2013-03-26 18:19:12 +000025