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

Side by Side Diff: libyuv.gyp

Issue 1525033005: change scale down by 4 to use rounding. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: scale by 4 uses ssse3 now Created 5 years 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 | « include/libyuv/scale_row.h ('k') | source/scale.cc » ('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 2011 The LibYuv Project Authors. All rights reserved. 1 # Copyright 2011 The LibYuv Project Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 29 matching lines...) Expand all
40 }], 40 }],
41 ], 41 ],
42 }, 42 },
43 43
44 'targets': [ 44 'targets': [
45 { 45 {
46 'target_name': 'libyuv', 46 'target_name': 'libyuv',
47 # Change type to 'shared_library' to build .so or .dll files. 47 # Change type to 'shared_library' to build .so or .dll files.
48 'type': 'static_library', 48 'type': 'static_library',
49 'variables': { 49 'variables': {
50 'optimize': 'max', # enable O2 and ltcg. 50 # 'optimize': 'max', # enable O2 and ltcg.
51 }, 51 },
52 # Allows libyuv.a redistributable library without external dependencies. 52 # Allows libyuv.a redistributable library without external dependencies.
53 'standalone_static_library': 1, 53 'standalone_static_library': 1,
54 'conditions': [ 54 'conditions': [
55 ['build_neon != 0', { 55 ['build_neon != 0', {
56 'defines': [ 56 'defines': [
57 'LIBYUV_NEON', 57 'LIBYUV_NEON',
58 ], 58 ],
59 'cflags!': [ 59 'cflags!': [
60 '-mfpu=vfp', 60 '-mfpu=vfp',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 ], 145 ],
146 }, 146 },
147 ], # targets. 147 ], # targets.
148 } 148 }
149 149
150 # Local Variables: 150 # Local Variables:
151 # tab-width:2 151 # tab-width:2
152 # indent-tabs-mode:nil 152 # indent-tabs-mode:nil
153 # End: 153 # End:
154 # vim: set expandtab tabstop=2 shiftwidth=2: 154 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « include/libyuv/scale_row.h ('k') | source/scale.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698