OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 11 matching lines...) Expand all Loading... |
22 'ext/analysis_canvas_unittest.cc', | 22 'ext/analysis_canvas_unittest.cc', |
23 'ext/bitmap_platform_device_mac_unittest.cc', | 23 'ext/bitmap_platform_device_mac_unittest.cc', |
24 'ext/convolver_unittest.cc', | 24 'ext/convolver_unittest.cc', |
25 'ext/image_operations_unittest.cc', | 25 'ext/image_operations_unittest.cc', |
26 'ext/pixel_ref_utils_unittest.cc', | 26 'ext/pixel_ref_utils_unittest.cc', |
27 'ext/platform_canvas_unittest.cc', | 27 'ext/platform_canvas_unittest.cc', |
28 'ext/recursive_gaussian_convolution_unittest.cc', | 28 'ext/recursive_gaussian_convolution_unittest.cc', |
29 'ext/refptr_unittest.cc', | 29 'ext/refptr_unittest.cc', |
30 'ext/skia_utils_ios_unittest.mm', | 30 'ext/skia_utils_ios_unittest.mm', |
31 'ext/skia_utils_mac_unittest.mm', | 31 'ext/skia_utils_mac_unittest.mm', |
32 'ext/vector_canvas_unittest.cc', | |
33 ], | 32 ], |
34 'conditions': [ | 33 'conditions': [ |
35 ['OS != "win"', { | |
36 'sources!': [ | |
37 'ext/vector_canvas_unittest.cc', | |
38 ], | |
39 }], | |
40 ['OS != "win" and OS != "mac"', { | 34 ['OS != "win" and OS != "mac"', { |
41 'sources!': [ | 35 'sources!': [ |
42 'ext/platform_canvas_unittest.cc', | 36 'ext/platform_canvas_unittest.cc', |
43 ], | 37 ], |
44 }], | 38 }], |
45 ['OS == "android"', { | 39 ['OS == "android"', { |
46 'dependencies': [ | 40 'dependencies': [ |
47 '../testing/android/native_test.gyp:native_test_native_code', | 41 '../testing/android/native_test.gyp:native_test_native_code', |
48 ], | 42 ], |
49 }], | 43 }], |
(...skipping 11 matching lines...) Expand all Loading... |
61 ], | 55 ], |
62 'variables': { | 56 'variables': { |
63 'test_suite_name': 'skia_unittests', | 57 'test_suite_name': 'skia_unittests', |
64 }, | 58 }, |
65 'includes': [ '../build/apk_test.gypi' ], | 59 'includes': [ '../build/apk_test.gypi' ], |
66 }, | 60 }, |
67 ], | 61 ], |
68 }], | 62 }], |
69 ], | 63 ], |
70 } | 64 } |
OLD | NEW |