Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(551)

Side by Side Diff: libvpx.gyp

Issue 530193002: GN: Build libvpx on POSIX x86 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« BUILD.gn ('K') | « generate_gypi.sh ('k') | libvpx_srcs.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« BUILD.gn ('K') | « generate_gypi.sh ('k') | libvpx_srcs.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698