OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': 0, | 7 'chromium_code': 0, |
8 'cc_tests_source_files': [ | 8 'cc_tests_source_files': [ |
9 'hash_pair_unittest.cc', | 9 'hash_pair_unittest.cc', |
10 'active_animation_unittest.cc', | 10 'active_animation_unittest.cc', |
(...skipping 21 matching lines...) Expand all Loading... |
32 'render_surface_filters_unittest.cc', | 32 'render_surface_filters_unittest.cc', |
33 'render_surface_unittest.cc', | 33 'render_surface_unittest.cc', |
34 'gl_renderer_unittest.cc', | 34 'gl_renderer_unittest.cc', |
35 'resource_provider_unittest.cc', | 35 'resource_provider_unittest.cc', |
36 'scheduler_state_machine_unittest.cc', | 36 'scheduler_state_machine_unittest.cc', |
37 'scheduler_unittest.cc', | 37 'scheduler_unittest.cc', |
38 'scoped_texture_unittest.cc', | 38 'scoped_texture_unittest.cc', |
39 'scrollbar_animation_controller_linear_fade_unittest.cc', | 39 'scrollbar_animation_controller_linear_fade_unittest.cc', |
40 'solid_color_layer_impl_unittest.cc', | 40 'solid_color_layer_impl_unittest.cc', |
41 'resource_update_controller_unittest.cc', | 41 'resource_update_controller_unittest.cc', |
42 'thread_task_unittest.cc', | |
43 'tiled_layer_impl_unittest.cc', | 42 'tiled_layer_impl_unittest.cc', |
44 'timer_unittest.cc', | |
45 'content_layer_unittest.cc', | 43 'content_layer_unittest.cc', |
46 'float_quad_unittest.cc', | 44 'float_quad_unittest.cc', |
47 'layer_unittest.cc', | 45 'layer_unittest.cc', |
48 'scrollbar_layer_unittest.cc', | 46 'scrollbar_layer_unittest.cc', |
49 'texture_copier_unittest.cc', | 47 'texture_copier_unittest.cc', |
50 'texture_layer_unittest.cc', | 48 'texture_layer_unittest.cc', |
51 'texture_uploader_unittest.cc', | 49 'texture_uploader_unittest.cc', |
52 'tiled_layer_unittest.cc', | 50 'tiled_layer_unittest.cc', |
53 'tree_synchronizer_unittest.cc', | 51 'tree_synchronizer_unittest.cc', |
54 ], | 52 ], |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 '../third_party/WebKit/Source/Platform/chromium', | 122 '../third_party/WebKit/Source/Platform/chromium', |
125 ], | 123 ], |
126 'dependencies': [ | 124 'dependencies': [ |
127 '../ui/gl/gl.gyp:gl', | 125 '../ui/gl/gl.gyp:gl', |
128 '../testing/gtest.gyp:gtest', | 126 '../testing/gtest.gyp:gtest', |
129 '../testing/gmock.gyp:gmock', | 127 '../testing/gmock.gyp:gmock', |
130 '../skia/skia.gyp:skia', | 128 '../skia/skia.gyp:skia', |
131 '../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf', | 129 '../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf', |
132 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit_wtf_supp
ort', | 130 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit_wtf_supp
ort', |
133 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 131 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
134 '../webkit/compositor_bindings/compositor_bindings.gyp:webkit_compositor
_support', | |
135 '../webkit/support/webkit_support.gyp:glue', | |
136 ], | 132 ], |
137 'sources': [ | 133 'sources': [ |
138 '<@(cc_tests_support_files)', | 134 '<@(cc_tests_support_files)', |
139 'test/test_webkit_platform.cc', | |
140 'test/test_webkit_platform.h', | |
141 ], | 135 ], |
142 }, | 136 }, |
143 ], | 137 ], |
144 'conditions': [ | 138 'conditions': [ |
145 # Special target to wrap a gtest_target_type==shared_library | 139 # Special target to wrap a gtest_target_type==shared_library |
146 # cc_unittests into an android apk for execution. | 140 # cc_unittests into an android apk for execution. |
147 ['OS == "android" and gtest_target_type == "shared_library"', { | 141 ['OS == "android" and gtest_target_type == "shared_library"', { |
148 'targets': [ | 142 'targets': [ |
149 { | 143 { |
150 'target_name': 'cc_unittests_apk', | 144 'target_name': 'cc_unittests_apk', |
151 'type': 'none', | 145 'type': 'none', |
152 'dependencies': [ | 146 'dependencies': [ |
153 'cc_unittests', | 147 'cc_unittests', |
154 ], | 148 ], |
155 'variables': { | 149 'variables': { |
156 'test_suite_name': 'cc_unittests', | 150 'test_suite_name': 'cc_unittests', |
157 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_unitte
sts<(SHARED_LIB_SUFFIX)', | 151 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_unitte
sts<(SHARED_LIB_SUFFIX)', |
158 }, | 152 }, |
159 'includes': [ '../build/apk_test.gypi' ], | 153 'includes': [ '../build/apk_test.gypi' ], |
160 }, | 154 }, |
161 ], | 155 ], |
162 }], | 156 }], |
163 ], | 157 ], |
164 } | 158 } |
OLD | NEW |