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