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

Side by Side Diff: libvpx.gyp

Issue 13474006: 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 | « generate_gypi.sh ('k') | libvpx_srcs_x86.gypi » ('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 'use_system_libvpx%': 0, 6 'use_system_libvpx%': 0,
7 'libvpx_build_vp9%': 1, 7 'libvpx_build_vp9%': 1,
8 'libvpx_source%': 'source/libvpx', 8 'libvpx_source%': 'source/libvpx',
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 ['target_arch=="ia32"', { 105 ['target_arch=="ia32"', {
106 'includes': [ 106 'includes': [
107 'libvpx_srcs_x86.gypi', 107 'libvpx_srcs_x86.gypi',
108 ], 108 ],
109 'dependencies': [ 109 'dependencies': [
110 'libvpx_intrinsics_mmx', 110 'libvpx_intrinsics_mmx',
111 'libvpx_intrinsics_sse2', 111 'libvpx_intrinsics_sse2',
112 'libvpx_intrinsics_sse3', 112 'libvpx_intrinsics_sse3',
113 'libvpx_intrinsics_ssse3', 113 'libvpx_intrinsics_ssse3',
114 'libvpx_intrinsics_sse4_1', 114 'libvpx_intrinsics_sse4_1',
115 'libvpx_intrinsics_extra',
116 ], 115 ],
117 }], 116 }],
118 ['target_arch=="x64"', { 117 ['target_arch=="x64"', {
119 'includes': [ 118 'includes': [
120 'libvpx_srcs_x86_64.gypi', 119 'libvpx_srcs_x86_64.gypi',
121 ], 120 ],
122 'dependencies': [ 121 'dependencies': [
123 'libvpx_intrinsics_mmx', 122 'libvpx_intrinsics_mmx',
124 'libvpx_intrinsics_sse2', 123 'libvpx_intrinsics_sse2',
125 'libvpx_intrinsics_sse3', 124 'libvpx_intrinsics_sse3',
126 'libvpx_intrinsics_ssse3', 125 'libvpx_intrinsics_ssse3',
127 'libvpx_intrinsics_sse4_1', 126 'libvpx_intrinsics_sse4_1',
128 'libvpx_intrinsics_extra',
129 ], 127 ],
130 }], 128 }],
131 ['clang == 1', { 129 ['clang == 1', {
132 'xcode_settings': { 130 'xcode_settings': {
133 'WARNING_CFLAGS': [ 131 'WARNING_CFLAGS': [
134 # libvpx heavily relies on implicit enum casting. 132 # libvpx heavily relies on implicit enum casting.
135 '-Wno-conversion', 133 '-Wno-conversion',
136 # libvpx does `if ((a == b))` in some places. 134 # libvpx does `if ((a == b))` in some places.
137 '-Wno-parentheses-equality', 135 '-Wno-parentheses-equality',
138 ], 136 ],
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 ], 793 ],
796 'libraries': [ 794 'libraries': [
797 '<!@(pkg-config --libs-only-l vpx)', 795 '<!@(pkg-config --libs-only-l vpx)',
798 ], 796 ],
799 }, 797 },
800 }, 798 },
801 ], 799 ],
802 }], 800 }],
803 ], 801 ],
804 } 802 }
OLDNEW
« no previous file with comments | « generate_gypi.sh ('k') | libvpx_srcs_x86.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698