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 'web_animation_unittest.cc', | 9 'web_animation_unittest.cc', |
10 'web_float_animation_curve_unittest.cc', | 10 'web_float_animation_curve_unittest.cc', |
11 'web_layer_unittest.cc', | 11 'web_layer_unittest.cc', |
12 'web_layer_tree_view_unittest.cc', | 12 'web_layer_tree_view_unittest.cc', |
13 'web_transform_animation_curve_unittest.cc', | 13 'web_transform_animation_curve_unittest.cc', |
14 'web_transform_operations_unittest.cc', | 14 'web_transform_operations_unittest.cc', |
15 'web_transformation_matrix_unittest.cc', | 15 'web_transformation_matrix_unittest.cc', |
16 'test/fake_web_scrollbar_theme_geometry.h', | |
17 'test/web_layer_tree_view_test_common.h', | 16 'test/web_layer_tree_view_test_common.h', |
18 ], | 17 ], |
19 }, | 18 }, |
20 'targets': [ | 19 'targets': [ |
21 { | 20 { |
22 'target_name': 'webkit_compositor_bindings_unittests', | 21 'target_name': 'webkit_compositor_bindings_unittests', |
23 'type' : '<(gtest_target_type)', | 22 'type' : '<(gtest_target_type)', |
24 'dependencies': [ | 23 'dependencies': [ |
25 '../../base/base.gyp:test_support_base', | 24 '../../base/base.gyp:test_support_base', |
26 '../../cc/cc.gyp:cc', | 25 '../../cc/cc.gyp:cc', |
27 '../../cc/cc_tests.gyp:cc_test_support', | 26 '../../cc/cc_tests.gyp:cc_test_support', |
28 '../../skia/skia.gyp:skia', | 27 '../../skia/skia.gyp:skia', |
29 '../../testing/gmock.gyp:gmock', | 28 '../../testing/gmock.gyp:gmock', |
30 '../../testing/gtest.gyp:gtest', | 29 '../../testing/gtest.gyp:gtest', |
31 'compositor_bindings.gyp:webkit_compositor_bindings', | 30 'compositor_bindings.gyp:webkit_compositor_bindings', |
32 ], | 31 ], |
33 'sources': [ | 32 'sources': [ |
34 '<@(webkit_compositor_bindings_tests_sources)', | 33 '<@(webkit_compositor_bindings_tests_sources)', |
35 'test/run_all_unittests.cc', | 34 'test/run_all_unittests.cc', |
36 ], | 35 ], |
37 'include_dirs': [ | 36 'include_dirs': [ |
38 '.', | 37 '../..' |
39 'test', | |
40 '<(DEPTH)/cc', | |
41 '<(DEPTH)/cc/stubs', | |
42 '<(DEPTH)/cc/test', | |
43 '../../third_party/WebKit/Source/Platform/chromium' | |
44 ], | 38 ], |
45 'conditions': [ | 39 'conditions': [ |
46 ['OS == "android" and gtest_target_type == "shared_library"', { | 40 ['OS == "android" and gtest_target_type == "shared_library"', { |
47 'dependencies': [ | 41 'dependencies': [ |
48 '../../testing/android/native_test.gyp:native_test_native_code', | 42 '../../testing/android/native_test.gyp:native_test_native_code', |
49 ], | 43 ], |
50 }], | 44 }], |
51 ], | 45 ], |
52 }, | 46 }, |
53 ], | 47 ], |
(...skipping 11 matching lines...) Expand all Loading... |
65 'variables': { | 59 'variables': { |
66 'test_suite_name': 'webkit_compositor_bindings_unittests', | 60 'test_suite_name': 'webkit_compositor_bindings_unittests', |
67 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webkit_co
mpositor_bindings_unittests<(SHARED_LIB_SUFFIX)', | 61 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webkit_co
mpositor_bindings_unittests<(SHARED_LIB_SUFFIX)', |
68 }, | 62 }, |
69 'includes': [ '../../build/apk_test.gypi' ], | 63 'includes': [ '../../build/apk_test.gypi' ], |
70 }, | 64 }, |
71 ], | 65 ], |
72 }], | 66 }], |
73 ], | 67 ], |
74 } | 68 } |
OLD | NEW |