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

Side by Side Diff: libvpx_srcs_x86_intrinsics.gypi

Issue 13849011: libvpx: Pull from upstream (Closed) Base URL: https://src.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 8 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
« no previous file with comments | « libvpx_srcs_x86_64.gypi ('k') | source/libvpx/build/make/Android.mk » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file is generated. Do not edit. 1 # This file is generated. Do not edit.
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'libvpx_intrinsics_mmx', 9 'target_name': 'libvpx_intrinsics_mmx',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 23 matching lines...) Expand all
34 'type': 'static_library', 34 'type': 'static_library',
35 'include_dirs': [ 35 'include_dirs': [
36 'source/config/<(OS_CATEGORY)/<(target_arch)', 36 'source/config/<(OS_CATEGORY)/<(target_arch)',
37 '<(libvpx_source)', 37 '<(libvpx_source)',
38 ], 38 ],
39 'sources': [ 39 'sources': [
40 '<(libvpx_source)/vp8/common/x86/idct_blk_sse2.c', 40 '<(libvpx_source)/vp8/common/x86/idct_blk_sse2.c',
41 '<(libvpx_source)/vp8/common/x86/recon_wrapper_sse2.c', 41 '<(libvpx_source)/vp8/common/x86/recon_wrapper_sse2.c',
42 '<(libvpx_source)/vp8/common/x86/variance_sse2.c', 42 '<(libvpx_source)/vp8/common/x86/variance_sse2.c',
43 '<(libvpx_source)/vp8/encoder/x86/denoising_sse2.c', 43 '<(libvpx_source)/vp8/encoder/x86/denoising_sse2.c',
44 '<(libvpx_source)/vp8/encoder/x86/quantize_sse2.c',
45 '<(libvpx_source)/vp8/encoder/x86/vp8_enc_stubs_sse2.c', 44 '<(libvpx_source)/vp8/encoder/x86/vp8_enc_stubs_sse2.c',
46 '<(libvpx_source)/vp9/common/x86/vp9_filter_sse2.c',
47 '<(libvpx_source)/vp9/common/x86/vp9_loopfilter_intrin_sse2.c', 45 '<(libvpx_source)/vp9/common/x86/vp9_loopfilter_intrin_sse2.c',
48 '<(libvpx_source)/vp9/common/x86/vp9_recon_wrapper_sse2.c', 46 '<(libvpx_source)/vp9/common/x86/vp9_recon_wrapper_sse2.c',
49 '<(libvpx_source)/vp9/common/x86/vp9_sadmxn_sse2.c', 47 '<(libvpx_source)/vp9/common/x86/vp9_sadmxn_sse2.c',
50 '<(libvpx_source)/vp9/common/x86/vp9_subpixel_variance_sse2.c', 48 '<(libvpx_source)/vp9/common/x86/vp9_subpixel_variance_sse2.c',
51 '<(libvpx_source)/vp9/decoder/x86/vp9_idct_blk_sse2.c', 49 '<(libvpx_source)/vp9/decoder/x86/vp9_idct_blk_sse2.c',
52 ], 50 ],
53 'conditions': [ 51 'conditions': [
54 ['os_posix==1 and OS!="mac"', { 52 ['os_posix==1 and OS!="mac"', {
55 'cflags': [ '-msse2', ], 53 'cflags': [ '-msse2', ],
56 }], 54 }],
(...skipping 26 matching lines...) Expand all
83 ], 81 ],
84 }, 82 },
85 { 83 {
86 'target_name': 'libvpx_intrinsics_sse4_1', 84 'target_name': 'libvpx_intrinsics_sse4_1',
87 'type': 'static_library', 85 'type': 'static_library',
88 'include_dirs': [ 86 'include_dirs': [
89 'source/config/<(OS_CATEGORY)/<(target_arch)', 87 'source/config/<(OS_CATEGORY)/<(target_arch)',
90 '<(libvpx_source)', 88 '<(libvpx_source)',
91 ], 89 ],
92 'sources': [ 90 'sources': [
93 '<(libvpx_source)/vp9/common/x86/vp9_filter_sse4.c',
94 ], 91 ],
95 'conditions': [ 92 'conditions': [
96 ['os_posix==1 and OS!="mac"', { 93 ['os_posix==1 and OS!="mac"', {
97 'cflags': [ '-msse4.1', ], 94 'cflags': [ '-msse4.1', ],
98 }], 95 }],
99 ['OS=="mac"', { 96 ['OS=="mac"', {
100 'xcode_settings': { 97 'xcode_settings': {
101 'OTHER_CFLAGS': [ '-msse4.1', ], 98 'OTHER_CFLAGS': [ '-msse4.1', ],
102 }, 99 },
103 }], 100 }],
104 ], 101 ],
105 }, 102 },
106 ], 103 ],
107 } 104 }
OLDNEW
« no previous file with comments | « libvpx_srcs_x86_64.gypi ('k') | source/libvpx/build/make/Android.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698