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

Side by Side Diff: trunk/src/third_party/libwebm/libwebm.gypi

Issue 139993005: Revert 245139 "Add libwebm in third_party." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'libwebm_sources': [
8 'source/mkvmuxer.cpp',
9 'source/mkvmuxerutil.cpp',
10 'source/mkvwriter.cpp',
11 ],
12 }
13 }
14
15 if (is_android) {
16 arm_use_neon = false
17 # Our version of arm_neon_optional from common.gypi. This is not used in the
18 # current build so is commented out for now.
19 #arm_optionally_use_neon = false
20 } else {
21 arm_use_neon = true
22 #arm_optionally_use_neon = true
23 }
24
25 if (arm_version == 6) {
26 arm_arch = "armv6"
27 arm_tune = ""
28 arm_float_abi = "softfp"
29 arm_fpu = "vfp"
30 # Thumb is a reduced instruction set available on some ARM processors that
31 # has increased code density.
32 arm_use_thumb = false
33
34 } else if (arm_version == 7) {
35 arm_arch = "armv7-a"
36 arm_tune = "cortex-a8"
37 arm_float_abi = "softfp"
38 arm_use_thumb = true
39
40 if (arm_use_neon) {
41 arm_fpu = "neon"
42 } else {
43 arm_fpu = "vfpv3-d16"
44 }
45 }
OLDNEW
« no previous file with comments | « trunk/src/third_party/libwebm/libwebm.gyp ('k') | trunk/src/third_party/libwebm/libwebm_nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698