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

Side by Side Diff: libyuv.gyp

Issue 1685723002: add 'LIBYUV_DISABLE_X86' to msan for unittests (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: move conditional for msan to existing block 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
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 24 matching lines...) Expand all
35 }], 35 }],
36 ], 36 ],
37 }, 37 },
38 38
39 'targets': [ 39 'targets': [
40 { 40 {
41 'target_name': 'libyuv', 41 'target_name': 'libyuv',
42 # Change type to 'shared_library' to build .so or .dll files. 42 # Change type to 'shared_library' to build .so or .dll files.
43 'type': 'static_library', 43 'type': 'static_library',
44 'variables': { 44 'variables': {
45 # 'optimize': 'max', # enable O2 and ltcg. 45 'optimize': 'max', # enable O2 and ltcg.
46 }, 46 },
47 # Allows libyuv.a redistributable library without external dependencies. 47 # Allows libyuv.a redistributable library without external dependencies.
48 'standalone_static_library': 1, 48 'standalone_static_library': 1,
49 'conditions': [ 49 'conditions': [
50 ['build_neon != 0', { 50 ['build_neon != 0', {
51 'defines': [ 51 'defines': [
52 'LIBYUV_NEON', 52 'LIBYUV_NEON',
53 ], 53 ],
54 'cflags!': [ 54 'cflags!': [
55 '-mfpu=vfp', 55 '-mfpu=vfp',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 ], 140 ],
141 }, 141 },
142 ], # targets. 142 ], # targets.
143 } 143 }
144 144
145 # Local Variables: 145 # Local Variables:
146 # tab-width:2 146 # tab-width:2
147 # indent-tabs-mode:nil 147 # indent-tabs-mode:nil
148 # End: 148 # End:
149 # vim: set expandtab tabstop=2 shiftwidth=2: 149 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« .gitignore ('K') | « include/libyuv/version.h ('k') | libyuv_test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698