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

Side by Side Diff: third_party/opus/opus.gyp

Issue 1613863002: Upgrade to Opus 1.1.2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Narrow opus license exception to just its autogen.sh file Created 4 years, 10 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 | « third_party/opus/README.chromium ('k') | third_party/opus/opus_srcs_rtcd.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 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['target_arch=="arm" or target_arch=="arm64"', { 8 ['target_arch=="arm" or target_arch=="arm64"', {
9 'use_opus_fixed_point%': 1, 9 'use_opus_fixed_point%': 1,
10 }, { 10 }, {
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 ], 143 ],
144 'includes': [ 144 'includes': [
145 'opus_srcs_arm.gypi', 145 'opus_srcs_arm.gypi',
146 ], 146 ],
147 'conditions': [ 147 'conditions': [
148 ['use_opus_rtcd==1', { 148 ['use_opus_rtcd==1', {
149 'defines': [ 149 'defines': [
150 'OPUS_ARM_MAY_HAVE_EDSP', 150 'OPUS_ARM_MAY_HAVE_EDSP',
151 'OPUS_ARM_MAY_HAVE_MEDIA', 151 'OPUS_ARM_MAY_HAVE_MEDIA',
152 'OPUS_ARM_MAY_HAVE_NEON', 152 'OPUS_ARM_MAY_HAVE_NEON',
153 'OPUS_ARM_MAY_HAVE_NEON_INTR',
153 'OPUS_HAVE_RTCD', 154 'OPUS_HAVE_RTCD',
154 ], 155 ],
155 'includes': [ 156 'includes': [
156 'opus_srcs_rtcd.gypi', 157 'opus_srcs_rtcd.gypi',
157 ], 158 ],
159 'cflags!': [ '-mfpu=vfpv3-d16' ],
160 'cflags': [ '-mfpu=neon' ],
158 }], 161 }],
159 ], 162 ],
160 }], 163 }],
161 ], 164 ],
162 }], 165 }],
163 ], 166 ],
164 }, # target opus 167 }, # target opus
165 { 168 {
166 'target_name': 'opus_compare', 169 'target_name': 'opus_compare',
167 'type': 'executable', 170 'type': 'executable',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 'type': 'executable', 234 'type': 'executable',
232 'dependencies': [ 235 'dependencies': [
233 'opus' 236 'opus'
234 ], 237 ],
235 'sources': [ 238 'sources': [
236 'src/tests/test_opus_padding.c', 239 'src/tests/test_opus_padding.c',
237 ], 240 ],
238 }, # target test_opus_padding 241 }, # target test_opus_padding
239 ] 242 ]
240 } 243 }
OLDNEW
« no previous file with comments | « third_party/opus/README.chromium ('k') | third_party/opus/opus_srcs_rtcd.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698