| 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': { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 'unit_test/basictypes_test.cc', | 35 'unit_test/basictypes_test.cc', |
| 36 'unit_test/compare_test.cc', | 36 'unit_test/compare_test.cc', |
| 37 'unit_test/color_test.cc', | 37 'unit_test/color_test.cc', |
| 38 'unit_test/convert_test.cc', | 38 'unit_test/convert_test.cc', |
| 39 'unit_test/cpu_test.cc', | 39 'unit_test/cpu_test.cc', |
| 40 'unit_test/math_test.cc', | 40 'unit_test/math_test.cc', |
| 41 'unit_test/planar_test.cc', | 41 'unit_test/planar_test.cc', |
| 42 'unit_test/rotate_argb_test.cc', | 42 'unit_test/rotate_argb_test.cc', |
| 43 'unit_test/rotate_test.cc', | 43 'unit_test/rotate_test.cc', |
| 44 'unit_test/scale_argb_test.cc', | 44 'unit_test/scale_argb_test.cc', |
| 45 'unit_test/scale_color_test.cc', | |
| 46 'unit_test/scale_test.cc', | 45 'unit_test/scale_test.cc', |
| 47 'unit_test/unit_test.cc', | 46 'unit_test/unit_test.cc', |
| 48 'unit_test/video_common_test.cc', | 47 'unit_test/video_common_test.cc', |
| 49 'unit_test/version_test.cc', | 48 'unit_test/version_test.cc', |
| 50 ], | 49 ], |
| 51 'conditions': [ | 50 'conditions': [ |
| 52 [ 'libyuv_enable_svn == 1', { | 51 [ 'libyuv_enable_svn == 1', { |
| 53 'defines': [ | 52 'defines': [ |
| 54 'LIBYUV_SVNREVISION="<!(svnversion -n)"', | 53 'LIBYUV_SVNREVISION="<!(svnversion -n)"', |
| 55 ], | 54 ], |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 'libyuv.gyp:libyuv', | 167 'libyuv.gyp:libyuv', |
| 169 ], | 168 ], |
| 170 }, | 169 }, |
| 171 ], # targets | 170 ], # targets |
| 172 'conditions': [ | 171 'conditions': [ |
| 173 ['OS=="android"', { | 172 ['OS=="android"', { |
| 174 'targets': [ | 173 'targets': [ |
| 175 { | 174 { |
| 176 # TODO(kjellander): Figure out what to change in build/apk_test.gypi | 175 # TODO(kjellander): Figure out what to change in build/apk_test.gypi |
| 177 # to it can be used instead of the copied code below. Using it in its | 176 # to it can be used instead of the copied code below. Using it in its |
| 178 # current version was not possible, since the target starts with 'lib'
, | 177 # current version was not possible, since the target starts with 'lib'
, |
| 179 # which somewhere confuses the variables. | 178 # which somewhere confuses the variables. |
| 180 'target_name': 'libyuv_unittest_apk', | 179 'target_name': 'libyuv_unittest_apk', |
| 181 'type': 'none', | 180 'type': 'none', |
| 182 'variables': { | 181 'variables': { |
| 183 # These are used to configure java_apk.gypi included below. | 182 # These are used to configure java_apk.gypi included below. |
| 184 'test_type': 'gtest', | 183 'test_type': 'gtest', |
| 185 'apk_name': 'libyuv_unittest', | 184 'apk_name': 'libyuv_unittest', |
| 186 'intermediate_dir': '<(PRODUCT_DIR)/libyuv_unittest_apk', | 185 'intermediate_dir': '<(PRODUCT_DIR)/libyuv_unittest_apk', |
| 187 'final_apk_path': '<(intermediate_dir)/libyuv_unittest-debug.apk', | 186 'final_apk_path': '<(intermediate_dir)/libyuv_unittest-debug.apk', |
| 188 'java_in_dir': '<(DEPTH)/testing/android/native_test/java', | 187 'java_in_dir': '<(DEPTH)/testing/android/native_test/java', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 203 ], | 202 ], |
| 204 }], | 203 }], |
| 205 ], | 204 ], |
| 206 } | 205 } |
| 207 | 206 |
| 208 # Local Variables: | 207 # Local Variables: |
| 209 # tab-width:2 | 208 # tab-width:2 |
| 210 # indent-tabs-mode:nil | 209 # indent-tabs-mode:nil |
| 211 # End: | 210 # End: |
| 212 # vim: set expandtab tabstop=2 shiftwidth=2: | 211 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |