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 'variables': { | 10 'variables': { |
11 'libyuv_disable_jpeg%': 0, | 11 # Can be enabled if your jpeg has GYP support. |
| 12 'libyuv_disable_jpeg%': 1, |
12 'mips_msa%': 0, # Default to msa off. | 13 'mips_msa%': 0, # Default to msa off. |
13 }, | 14 }, |
14 'targets': [ | 15 'targets': [ |
15 { | 16 { |
16 'target_name': 'libyuv_unittest', | 17 'target_name': 'libyuv_unittest', |
17 'type': '<(gtest_target_type)', | 18 'type': '<(gtest_target_type)', |
18 'dependencies': [ | 19 'dependencies': [ |
19 'libyuv.gyp:libyuv', | 20 'libyuv.gyp:libyuv', |
20 'testing/gtest.gyp:gtest', | 21 'testing/gtest.gyp:gtest', |
21 'third_party/gflags/gflags.gyp:gflags', | 22 'third_party/gflags/gflags.gyp:gflags', |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 ], | 194 ], |
194 }], | 195 }], |
195 ], | 196 ], |
196 } | 197 } |
197 | 198 |
198 # Local Variables: | 199 # Local Variables: |
199 # tab-width:2 | 200 # tab-width:2 |
200 # indent-tabs-mode:nil | 201 # indent-tabs-mode:nil |
201 # End: | 202 # End: |
202 # vim: set expandtab tabstop=2 shiftwidth=2: | 203 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |