OLD | NEW |
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 Loading... |
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 Loading... |
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: |
OLD | NEW |