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 'libyuv_enable_svn%': 0, | 12 'libyuv_enable_svn%': 0, |
13 }, | 13 }, |
14 'targets': [ | 14 'targets': [ |
15 { | 15 { |
16 'target_name': 'libyuv_unittest', | 16 'target_name': 'libyuv_unittest', |
17 'type': '<(gtest_target_type)', | 17 'type': '<(gtest_target_type)', |
18 'dependencies': [ | 18 'dependencies': [ |
19 'libyuv.gyp:libyuv', | 19 'libyuv.gyp:libyuv', |
20 'testing/gtest.gyp:gtest', | 20 'testing/gtest.gyp:gtest', |
| 21 'third_party/gflags/gflags.gyp:gflags', |
| 22 ], |
| 23 'direct_dependent_settings': { |
| 24 'defines': [ |
| 25 'GTEST_RELATIVE_PATH', |
| 26 ], |
| 27 }, |
| 28 'export_dependent_settings': [ |
| 29 '<(DEPTH)/testing/gtest.gyp:gtest', |
21 ], | 30 ], |
22 'defines': [ | 31 'defines': [ |
23 # Enable the following 3 macros to turn off assembly for specified CPU. | 32 # Enable the following 3 macros to turn off assembly for specified CPU. |
24 # 'LIBYUV_DISABLE_X86', | 33 # 'LIBYUV_DISABLE_X86', |
25 # 'LIBYUV_DISABLE_NEON', | 34 # 'LIBYUV_DISABLE_NEON', |
26 # 'LIBYUV_DISABLE_MIPS', | 35 # 'LIBYUV_DISABLE_MIPS', |
27 # Enable the following macro to build libyuv as a shared library (dll). | 36 # Enable the following macro to build libyuv as a shared library (dll). |
28 # 'LIBYUV_USING_SHARED_LIBRARY', | 37 # 'LIBYUV_USING_SHARED_LIBRARY', |
29 ], | 38 ], |
30 'sources': [ | 39 'sources': [ |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 ], | 211 ], |
203 }], | 212 }], |
204 ], | 213 ], |
205 } | 214 } |
206 | 215 |
207 # Local Variables: | 216 # Local Variables: |
208 # tab-width:2 | 217 # tab-width:2 |
209 # indent-tabs-mode:nil | 218 # indent-tabs-mode:nil |
210 # End: | 219 # End: |
211 # vim: set expandtab tabstop=2 shiftwidth=2: | 220 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |