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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 ['target_arch=="arm64"', { | 153 ['target_arch=="arm64"', { |
154 'includes': [ 'libvpx_srcs_arm64.gypi', ], | 154 'includes': [ 'libvpx_srcs_arm64.gypi', ], |
155 }], | 155 }], |
156 ['target_arch=="x64"', { | 156 ['target_arch=="x64"', { |
157 'conditions': [ | 157 'conditions': [ |
158 ['msan==1', { | 158 ['msan==1', { |
159 'includes': [ 'libvpx_srcs_generic.gypi', ], | 159 'includes': [ 'libvpx_srcs_generic.gypi', ], |
160 }, { | 160 }, { |
161 'includes': [ | 161 'includes': [ |
162 'libvpx_srcs_x86_64.gypi', | 162 'libvpx_srcs_x86_64.gypi', |
163 'libvpx_srcs_nacl.gypi', | |
164 ], | 163 ], |
165 'dependencies': [ | 164 'dependencies': [ |
166 'libvpx_intrinsics_mmx', | 165 'libvpx_intrinsics_mmx', |
167 'libvpx_intrinsics_sse2', | 166 'libvpx_intrinsics_sse2', |
168 # Currently no sse3 intrinsic functions | 167 # Currently no sse3 intrinsic functions |
169 #'libvpx_intrinsics_sse3', | 168 #'libvpx_intrinsics_sse3', |
170 'libvpx_intrinsics_ssse3', | 169 'libvpx_intrinsics_ssse3', |
171 'libvpx_intrinsics_sse4_1', | 170 'libvpx_intrinsics_sse4_1', |
172 # Currently no avx intrinsic functions | 171 # Currently no avx intrinsic functions |
173 #'libvpx_intrinsics_avx', | 172 #'libvpx_intrinsics_avx', |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
574 # Need this otherwise gyp won't run the rule on them. | 573 # Need this otherwise gyp won't run the rule on them. |
575 'sources': [ | 574 'sources': [ |
576 '<(INTERMEDIATE_DIR)/vpx_scale_asm_offsets.o', | 575 '<(INTERMEDIATE_DIR)/vpx_scale_asm_offsets.o', |
577 ], | 576 ], |
578 }], | 577 }], |
579 ], | 578 ], |
580 'includes': ['obj_int_extract.gypi'], | 579 'includes': ['obj_int_extract.gypi'], |
581 }, | 580 }, |
582 ], | 581 ], |
583 } | 582 } |
OLD | NEW |