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 21 matching lines...) Expand all Loading... |
32 'animation/multi_animation_unittest.cc', | 32 'animation/multi_animation_unittest.cc', |
33 'animation/slide_animation_unittest.cc', | 33 'animation/slide_animation_unittest.cc', |
34 'animation/tween_unittest.cc', | 34 'animation/tween_unittest.cc', |
35 'blit_unittest.cc', | 35 'blit_unittest.cc', |
36 'break_list_unittest.cc', | 36 'break_list_unittest.cc', |
37 'canvas_unittest.cc', | 37 'canvas_unittest.cc', |
38 'codec/jpeg_codec_unittest.cc', | 38 'codec/jpeg_codec_unittest.cc', |
39 'codec/png_codec_unittest.cc', | 39 'codec/png_codec_unittest.cc', |
40 'color_analysis_unittest.cc', | 40 'color_analysis_unittest.cc', |
41 'color_utils_unittest.cc', | 41 'color_utils_unittest.cc', |
| 42 'display_change_notifier_unittest.cc', |
42 'display_unittest.cc', | 43 'display_unittest.cc', |
43 'font_list_unittest.cc', | 44 'font_list_unittest.cc', |
44 'font_render_params_linux_unittest.cc', | 45 'font_render_params_linux_unittest.cc', |
45 'geometry/box_unittest.cc', | 46 'geometry/box_unittest.cc', |
46 'geometry/cubic_bezier_unittest.cc', | 47 'geometry/cubic_bezier_unittest.cc', |
47 'geometry/insets_unittest.cc', | 48 'geometry/insets_unittest.cc', |
48 'geometry/matrix3_unittest.cc', | 49 'geometry/matrix3_unittest.cc', |
49 'geometry/point_unittest.cc', | 50 'geometry/point_unittest.cc', |
50 'geometry/point3_unittest.cc', | 51 'geometry/point3_unittest.cc', |
51 'geometry/quad_unittest.cc', | 52 'geometry/quad_unittest.cc', |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 'font_list_unittest.cc', | 118 'font_list_unittest.cc', |
118 'font_unittest.cc', | 119 'font_unittest.cc', |
119 'render_text_unittest.cc', | 120 'render_text_unittest.cc', |
120 'text_elider_unittest.cc', | 121 'text_elider_unittest.cc', |
121 ], | 122 ], |
122 }], | 123 }], |
123 ['OS == "android"', { | 124 ['OS == "android"', { |
124 'dependencies': [ | 125 'dependencies': [ |
125 '../../testing/android/native_test.gyp:native_test_native_code', | 126 '../../testing/android/native_test.gyp:native_test_native_code', |
126 ], | 127 ], |
| 128 # Do not run display_change_notifier_unittest.cc on Android because it |
| 129 # does not compile display_observer.cc |
| 130 'sources!': [ |
| 131 'display_change_notifier_unittest.cc', |
| 132 ], |
127 }], | 133 }], |
128 ['OS=="android" or OS=="ios"', { | 134 ['OS=="android" or OS=="ios"', { |
129 'sources!': [ | 135 'sources!': [ |
130 'render_text_unittest.cc', | 136 'render_text_unittest.cc', |
131 ], | 137 ], |
132 }], | 138 }], |
133 ], | 139 ], |
134 } | 140 } |
135 ], | 141 ], |
136 'conditions': [ | 142 'conditions': [ |
137 ['OS == "android"', { | 143 ['OS == "android"', { |
138 'targets': [ | 144 'targets': [ |
139 { | 145 { |
140 'target_name': 'gfx_unittests_apk', | 146 'target_name': 'gfx_unittests_apk', |
141 'type': 'none', | 147 'type': 'none', |
142 'dependencies': [ | 148 'dependencies': [ |
143 '../android/ui_android.gyp:ui_java', | 149 '../android/ui_android.gyp:ui_java', |
144 'gfx_unittests', | 150 'gfx_unittests', |
145 ], | 151 ], |
146 'variables': { | 152 'variables': { |
147 'test_suite_name': 'gfx_unittests', | 153 'test_suite_name': 'gfx_unittests', |
148 }, | 154 }, |
149 'includes': [ '../../build/apk_test.gypi' ], | 155 'includes': [ '../../build/apk_test.gypi' ], |
150 }, | 156 }, |
151 ], | 157 ], |
152 }], | 158 }], |
153 ], | 159 ], |
154 } | 160 } |
OLD | NEW |