Geremy Condra | cd4104e | 2013-03-26 18:19:12 +0000 | [diff] [blame] | 1 | # |
| 2 | # Maps an arbitrary tag [TAGNAME] with the string contents found in |
William Roberts | 52fc95d | 2013-03-26 14:00:51 -0700 | [diff] [blame] | 3 | # TARGET_BUILD_VARIANT. Common convention is to start TAGNAME with an @ and |
Geremy Condra | cd4104e | 2013-03-26 18:19:12 +0000 | [diff] [blame] | 4 | # 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 Roberts | 52fc95d | 2013-03-26 14:00:51 -0700 | [diff] [blame] | 8 | # option is to use ALL which will match ANY TARGET_BUILD_VARIANT string. |
Geremy Condra | cd4104e | 2013-03-26 18:19:12 +0000 | [diff] [blame] | 9 | # |
| 10 | |
| 11 | [@PLATFORM] |
Nick Kralevich | c3c9052 | 2013-10-25 12:25:36 -0700 | [diff] [blame] | 12 | ALL : $DEFAULT_SYSTEM_DEV_CERTIFICATE/platform.x509.pem |
Geremy Condra | cd4104e | 2013-03-26 18:19:12 +0000 | [diff] [blame] | 13 | |
| 14 | [@MEDIA] |
Nick Kralevich | c3c9052 | 2013-10-25 12:25:36 -0700 | [diff] [blame] | 15 | ALL : $DEFAULT_SYSTEM_DEV_CERTIFICATE/media.x509.pem |
Geremy Condra | cd4104e | 2013-03-26 18:19:12 +0000 | [diff] [blame] | 16 | |
| 17 | [@SHARED] |
Nick Kralevich | c3c9052 | 2013-10-25 12:25:36 -0700 | [diff] [blame] | 18 | ALL : $DEFAULT_SYSTEM_DEV_CERTIFICATE/shared.x509.pem |
Geremy Condra | cd4104e | 2013-03-26 18:19:12 +0000 | [diff] [blame] | 19 | |
| 20 | # Example of ALL TARGET_BUILD_VARIANTS |
| 21 | [@RELEASE] |
Nick Kralevich | c3c9052 | 2013-10-25 12:25:36 -0700 | [diff] [blame] | 22 | ENG : $DEFAULT_SYSTEM_DEV_CERTIFICATE/testkey.x509.pem |
| 23 | USER : $DEFAULT_SYSTEM_DEV_CERTIFICATE/testkey.x509.pem |
| 24 | USERDEBUG : $DEFAULT_SYSTEM_DEV_CERTIFICATE/testkey.x509.pem |
Geremy Condra | cd4104e | 2013-03-26 18:19:12 +0000 | [diff] [blame] | 25 | |