Add stoney ridge x86 variant

Bug: 124445930
Test: compile and deploy to grunt
Change-Id: Ie63217c7c68f5688bf070cbabf9ea5a1b82d3acc
diff --git a/cc/config/x86_device.go b/cc/config/x86_device.go
index b3d6a4d..500014e 100644
--- a/cc/config/x86_device.go
+++ b/cc/config/x86_device.go
@@ -75,6 +75,10 @@
 			"-march=skylake",
 			"-mfpmath=sse",
 		},
+		"stoneyridge": []string{
+			"-march=bdver4",
+			"-mfpmath=sse",
+		},
 	}
 
 	x86ArchFeatureCflags = map[string][]string{
@@ -83,6 +87,7 @@
 		"sse4_1": []string{"-msse4.1"},
 		"sse4_2": []string{"-msse4.2"},
 		"avx":    []string{"-mavx"},
+		"avx2":   []string{"-mavx2"},
 		"aes_ni": []string{"-maes"},
 	}
 )