diff options
author | Colin Cross <ccross@android.com> | 2015-07-09 17:56:26 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2015-07-09 18:01:05 -0700 |
commit | 01432f6b115afffa4c74e807f49a4f05400c32a1 (patch) | |
tree | f586eec80317e5423cbf371995cbe110d6fc923a /common | |
parent | 463a90e5872d6c8cf26a2302e7ad1586957304a0 (diff) | |
download | build_soong-01432f6b115afffa4c74e807f49a4f05400c32a1.tar.gz build_soong-01432f6b115afffa4c74e807f49a4f05400c32a1.tar.bz2 build_soong-01432f6b115afffa4c74e807f49a4f05400c32a1.zip |
Add support for x86_sse3 and x86_sse4 arch sections
Change-Id: I26b642808c66bc4562b3079edbe482febf9b2435
Diffstat (limited to 'common')
-rw-r--r-- | common/arch.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/arch.go b/common/arch.go index c0e63eb0..3d685e5b 100644 --- a/common/arch.go +++ b/common/arch.go @@ -135,6 +135,10 @@ type archProperties struct { // Mips arch variants Mips_rev6 interface{} `blueprint:"filter(android:\"arch_variant\")"` + // X86 arch variants + X86_sse3 interface{} `blueprint:"filter(android:\"arch_variant\")"` + X86_sse4 interface{} `blueprint:"filter(android:\"arch_variant\")"` + // X86 cpu variants Atom interface{} `blueprint:"filter(android:\"arch_variant\")"` Silvermont interface{} `blueprint:"filter(android:\"arch_variant\")"` |