| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'variables': { | 5 'variables': { |
| 6 'libvpx_build_vp9%': 1, | 6 'libvpx_build_vp9%': 1, |
| 7 'libvpx_source%': 'source/libvpx', | 7 'libvpx_source%': 'source/libvpx', |
| 8 # Disable LTO for neon targets | 8 # Disable LTO for neon targets |
| 9 # crbug.com/408997 | 9 # crbug.com/408997 |
| 10 'use_lto%': 0, | 10 'use_lto%': 0, |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 ], | 141 ], |
| 142 'dependencies': [ | 142 'dependencies': [ |
| 143 'libvpx_intrinsics_mmx', | 143 'libvpx_intrinsics_mmx', |
| 144 'libvpx_intrinsics_sse2', | 144 'libvpx_intrinsics_sse2', |
| 145 # Currently no sse3 intrinsic functions | 145 # Currently no sse3 intrinsic functions |
| 146 #'libvpx_intrinsics_sse3', | 146 #'libvpx_intrinsics_sse3', |
| 147 'libvpx_intrinsics_ssse3', | 147 'libvpx_intrinsics_ssse3', |
| 148 'libvpx_intrinsics_sse4_1', | 148 'libvpx_intrinsics_sse4_1', |
| 149 # Currently no avx intrinsic functions | 149 # Currently no avx intrinsic functions |
| 150 #'libvpx_intrinsics_avx', | 150 #'libvpx_intrinsics_avx', |
| 151 #'libvpx_intrinsics_avx2', | 151 'libvpx_intrinsics_avx2', |
| 152 ], | 152 ], |
| 153 }], | 153 }], |
| 154 ['target_arch=="arm64"', { | 154 ['target_arch=="arm64"', { |
| 155 'includes': [ 'libvpx_srcs_arm64.gypi', ], | 155 'includes': [ 'libvpx_srcs_arm64.gypi', ], |
| 156 }], | 156 }], |
| 157 ['target_arch=="x64"', { | 157 ['target_arch=="x64"', { |
| 158 'conditions': [ | 158 'conditions': [ |
| 159 ['msan==1', { | 159 ['msan==1', { |
| 160 'includes': [ 'libvpx_srcs_generic.gypi', ], | 160 'includes': [ 'libvpx_srcs_generic.gypi', ], |
| 161 }, { | 161 }, { |
| 162 'includes': [ | 162 'includes': [ |
| 163 'libvpx_srcs_x86_64.gypi', | 163 'libvpx_srcs_x86_64.gypi', |
| 164 ], | 164 ], |
| 165 'dependencies': [ | 165 'dependencies': [ |
| 166 'libvpx_intrinsics_mmx', | 166 'libvpx_intrinsics_mmx', |
| 167 'libvpx_intrinsics_sse2', | 167 'libvpx_intrinsics_sse2', |
| 168 # Currently no sse3 intrinsic functions | 168 # Currently no sse3 intrinsic functions |
| 169 #'libvpx_intrinsics_sse3', | 169 #'libvpx_intrinsics_sse3', |
| 170 'libvpx_intrinsics_ssse3', | 170 'libvpx_intrinsics_ssse3', |
| 171 'libvpx_intrinsics_sse4_1', | 171 'libvpx_intrinsics_sse4_1', |
| 172 # Currently no avx intrinsic functions | 172 # Currently no avx intrinsic functions |
| 173 #'libvpx_intrinsics_avx', | 173 #'libvpx_intrinsics_avx', |
| 174 #'libvpx_intrinsics_avx2', | 174 'libvpx_intrinsics_avx2', |
| 175 ], | 175 ], |
| 176 }], | 176 }], |
| 177 ], | 177 ], |
| 178 }], | 178 }], |
| 179 ], | 179 ], |
| 180 }, | 180 }, |
| 181 ], | 181 ], |
| 182 }, | 182 }, |
| 183 ], | 183 ], |
| 184 # 'libvpx' target for mipsel and mips64el builds. | 184 # 'libvpx' target for mipsel and mips64el builds. |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 '-fstack-protector-all', # Implies -fstack-protector | 342 '-fstack-protector-all', # Implies -fstack-protector |
| 343 ], | 343 ], |
| 344 }, | 344 }, |
| 345 }], | 345 }], |
| 346 ], | 346 ], |
| 347 }, | 347 }, |
| 348 ], | 348 ], |
| 349 }], | 349 }], |
| 350 ], | 350 ], |
| 351 } | 351 } |
| OLD | NEW |