| 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 24 matching lines...) Expand all Loading... |
| 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 Loading... |
| 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: |
| OLD | NEW |