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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 'libvpx_srcs_nacl.gypi', | |
165 ], | 164 ], |
166 'dependencies': [ | 165 'dependencies': [ |
167 'libvpx_intrinsics_mmx', | 166 'libvpx_intrinsics_mmx', |
168 'libvpx_intrinsics_sse2', | 167 'libvpx_intrinsics_sse2', |
169 # Currently no sse3 intrinsic functions | 168 # Currently no sse3 intrinsic functions |
170 #'libvpx_intrinsics_sse3', | 169 #'libvpx_intrinsics_sse3', |
171 'libvpx_intrinsics_ssse3', | 170 'libvpx_intrinsics_ssse3', |
172 'libvpx_intrinsics_sse4_1', | 171 'libvpx_intrinsics_sse4_1', |
173 # Currently no avx intrinsic functions | 172 # Currently no avx intrinsic functions |
174 #'libvpx_intrinsics_avx', | 173 #'libvpx_intrinsics_avx', |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 # Need this otherwise gyp won't run the rule on them. | 574 # Need this otherwise gyp won't run the rule on them. |
576 'sources': [ | 575 'sources': [ |
577 '<(INTERMEDIATE_DIR)/vpx_scale_asm_offsets.o', | 576 '<(INTERMEDIATE_DIR)/vpx_scale_asm_offsets.o', |
578 ], | 577 ], |
579 }], | 578 }], |
580 ], | 579 ], |
581 'includes': ['obj_int_extract.gypi'], | 580 'includes': ['obj_int_extract.gypi'], |
582 }, | 581 }, |
583 ], | 582 ], |
584 } | 583 } |
OLD | NEW |