Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(467)

Side by Side Diff: cc/cc_tests.gyp

Issue 11344004: Remove WebKit::Platform dependencies from cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix webkit_compositor_bindings_unittests Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/cc.gyp ('k') | cc/delay_based_time_source.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 '../third_party/WebKit/Source/Platform/chromium', 123 '../third_party/WebKit/Source/Platform/chromium',
126 ], 124 ],
127 'dependencies': [ 125 'dependencies': [
128 '../ui/gl/gl.gyp:gl', 126 '../ui/gl/gl.gyp:gl',
129 '../testing/gtest.gyp:gtest', 127 '../testing/gtest.gyp:gtest',
130 '../testing/gmock.gyp:gmock', 128 '../testing/gmock.gyp:gmock',
131 '../skia/skia.gyp:skia', 129 '../skia/skia.gyp:skia',
132 '../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf', 130 '../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf',
133 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit_wtf_supp ort', 131 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit_wtf_supp ort',
134 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 132 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
135 '../webkit/compositor_bindings/compositor_bindings.gyp:webkit_compositor _support',
136 '../webkit/support/webkit_support.gyp:glue',
137 ], 133 ],
138 'sources': [ 134 'sources': [
139 '<@(cc_tests_support_files)', 135 '<@(cc_tests_support_files)',
140 'test/test_webkit_platform.cc',
141 'test/test_webkit_platform.h',
142 ], 136 ],
143 }, 137 },
144 ], 138 ],
145 'conditions': [ 139 'conditions': [
146 # Special target to wrap a gtest_target_type==shared_library 140 # Special target to wrap a gtest_target_type==shared_library
147 # cc_unittests into an android apk for execution. 141 # cc_unittests into an android apk for execution.
148 ['OS == "android" and gtest_target_type == "shared_library"', { 142 ['OS == "android" and gtest_target_type == "shared_library"', {
149 'targets': [ 143 'targets': [
150 { 144 {
151 'target_name': 'cc_unittests_apk', 145 'target_name': 'cc_unittests_apk',
152 'type': 'none', 146 'type': 'none',
153 'dependencies': [ 147 'dependencies': [
154 'cc_unittests', 148 'cc_unittests',
155 ], 149 ],
156 'variables': { 150 'variables': {
157 'test_suite_name': 'cc_unittests', 151 'test_suite_name': 'cc_unittests',
158 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_unitte sts<(SHARED_LIB_SUFFIX)', 152 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_unitte sts<(SHARED_LIB_SUFFIX)',
159 }, 153 },
160 'includes': [ '../build/apk_test.gypi' ], 154 'includes': [ '../build/apk_test.gypi' ],
161 }, 155 },
162 ], 156 ],
163 }], 157 }],
164 ], 158 ],
165 } 159 }
OLDNEW
« no previous file with comments | « cc/cc.gyp ('k') | cc/delay_based_time_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698