| 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 'webkit_compositor_bindings_tests_sources': [ | 8 'webkit_compositor_bindings_tests_sources': [ |
| 9 'WebAnimationTest.cpp', | 9 'web_animation_unittest.cc', |
| 10 'WebFloatAnimationCurveTest.cpp', | 10 'web_float_animation_curve_unittest.cc', |
| 11 'WebLayerTest.cpp', | 11 'web_layer_unittest.cc', |
| 12 'WebLayerTreeViewTest.cpp', | 12 'web_layer_tree_view_unittest.cc', |
| 13 'WebTransformAnimationCurveTest.cpp', | 13 'web_transform_animation_curve_unittest.cc', |
| 14 'WebTransformOperationsTest.cpp', | 14 'web_transform_operations_unittest.cc', |
| 15 'WebTransformationMatrixTest.cpp', | 15 'web_transformation_matrix_unittest.cc', |
| 16 'test/FakeWebScrollbarThemeGeometry.h', | 16 'test/fake_web_scrollbar_theme_geometry.h', |
| 17 'test/WebLayerTreeViewTestCommon.h', | 17 'test/web_layer_tree_view_test_common.h', |
| 18 ], | 18 ], |
| 19 }, | 19 }, |
| 20 'targets': [ | 20 'targets': [ |
| 21 { | 21 { |
| 22 'target_name': 'webkit_compositor_bindings_unittests', | 22 'target_name': 'webkit_compositor_bindings_unittests', |
| 23 'type' : 'executable', | 23 'type' : 'executable', |
| 24 'dependencies': [ | 24 'dependencies': [ |
| 25 '../../base/base.gyp:test_support_base', | 25 '../../base/base.gyp:test_support_base', |
| 26 '../../cc/cc.gyp:cc', | 26 '../../cc/cc.gyp:cc', |
| 27 '../../cc/cc_tests.gyp:cc_test_support', | 27 '../../cc/cc_tests.gyp:cc_test_support', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 39 '.', | 39 '.', |
| 40 'test', | 40 'test', |
| 41 '<(DEPTH)/cc', | 41 '<(DEPTH)/cc', |
| 42 '<(DEPTH)/cc/stubs', | 42 '<(DEPTH)/cc/stubs', |
| 43 '<(DEPTH)/cc/test', | 43 '<(DEPTH)/cc/test', |
| 44 '../../third_party/WebKit/Source/Platform/chromium' | 44 '../../third_party/WebKit/Source/Platform/chromium' |
| 45 ], | 45 ], |
| 46 }, | 46 }, |
| 47 ], | 47 ], |
| 48 } | 48 } |
| OLD | NEW |