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 24 matching lines...) Expand all Loading... |
35 ['OS != "win"', { | 35 ['OS != "win"', { |
36 'sources!': [ | 36 'sources!': [ |
37 'ext/vector_canvas_unittest.cc', | 37 'ext/vector_canvas_unittest.cc', |
38 ], | 38 ], |
39 }], | 39 }], |
40 ['OS != "win" and OS != "mac"', { | 40 ['OS != "win" and OS != "mac"', { |
41 'sources!': [ | 41 'sources!': [ |
42 'ext/platform_canvas_unittest.cc', | 42 'ext/platform_canvas_unittest.cc', |
43 ], | 43 ], |
44 }], | 44 }], |
| 45 ['OS == "android"', { |
| 46 'dependencies': [ |
| 47 '../testing/android/native_test.gyp:native_test_native_code', |
| 48 ], |
| 49 }], |
45 ], | 50 ], |
46 }, | 51 }, |
47 ], | 52 ], |
48 'conditions': [ | 53 'conditions': [ |
49 ['OS == "android"', { | 54 ['OS == "android"', { |
50 'targets': [ | 55 'targets': [ |
51 { | 56 { |
52 'target_name': 'skia_unittests_apk', | 57 'target_name': 'skia_unittests_apk', |
53 'type': 'none', | 58 'type': 'none', |
54 'dependencies': [ | 59 'dependencies': [ |
55 'skia_unittests', | 60 'skia_unittests', |
56 ], | 61 ], |
57 'variables': { | 62 'variables': { |
58 'test_suite_name': 'skia_unittests', | 63 'test_suite_name': 'skia_unittests', |
59 }, | 64 }, |
60 'includes': [ '../build/apk_test.gypi' ], | 65 'includes': [ '../build/apk_test.gypi' ], |
61 }, | 66 }, |
62 ], | 67 ], |
63 }], | 68 }], |
64 ], | 69 ], |
65 } | 70 } |
OLD | NEW |