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

Side by Side Diff: webkit/renderer/compositor_bindings/compositor_bindings_tests.gyp

Issue 192433002: Creating utility for converting TimeTicks to WebKit double and use it in the Chrome compositor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reworking webkit_time, adding other users. Created 6 years, 9 months 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
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': 1, 7 'chromium_code': 1,
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_impl_fixed_bounds_unittest.cc', 11 'web_layer_impl_fixed_bounds_unittest.cc',
12 'webkit_time_unittest.cc',
12 ], 13 ],
13 }, 14 },
14 'targets': [ 15 'targets': [
15 { 16 {
16 'target_name': 'webkit_compositor_bindings_unittests', 17 'target_name': 'webkit_compositor_bindings_unittests',
17 'type' : '<(gtest_target_type)', 18 'type' : '<(gtest_target_type)',
18 'dependencies': [ 19 'dependencies': [
19 '<(DEPTH)/base/base.gyp:test_support_base', 20 '<(DEPTH)/base/base.gyp:test_support_base',
20 '<(DEPTH)/cc/cc.gyp:cc', 21 '<(DEPTH)/cc/cc.gyp:cc',
21 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', 22 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'variables': { 65 'variables': {
65 'test_suite_name': 'webkit_compositor_bindings_unittests', 66 'test_suite_name': 'webkit_compositor_bindings_unittests',
66 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webkit_co mpositor_bindings_unittests<(SHARED_LIB_SUFFIX)', 67 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webkit_co mpositor_bindings_unittests<(SHARED_LIB_SUFFIX)',
67 }, 68 },
68 'includes': [ '../../../build/apk_test.gypi' ], 69 'includes': [ '../../../build/apk_test.gypi' ],
69 }, 70 },
70 ], 71 ],
71 }], 72 }],
72 ], 73 ],
73 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698