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

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

Issue 317163002: Moving compositor_bindings from webkit to content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changing dependencies due to failing ios bots Created 6 years, 6 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 # This is a dummy target so as to not to break the build while moving tests from
6 # webkit_compositor_bindings_unittests to content_unittests.
5 { 7 {
6 'variables': { 8 'variables': {
7 'chromium_code': 1, 9 'chromium_code': 1,
8 'webkit_compositor_bindings_tests_sources': [
9 'web_animation_unittest.cc',
10 'web_float_animation_curve_unittest.cc',
11 'web_layer_impl_fixed_bounds_unittest.cc',
12 ],
13 }, 10 },
14 'targets': [ 11 'targets': [
15 { 12 {
16 'target_name': 'webkit_compositor_bindings_unittests', 13 'target_name': 'webkit_compositor_bindings_unittests',
17 'type' : '<(gtest_target_type)', 14 'type' : '<(gtest_target_type)',
18 'dependencies': [ 15 'dependencies': [
19 '<(DEPTH)/base/base.gyp:test_support_base',
20 '<(DEPTH)/cc/cc.gyp:cc',
21 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support',
22 '<(DEPTH)/skia/skia.gyp:skia',
23 '<(DEPTH)/testing/gmock.gyp:gmock', 16 '<(DEPTH)/testing/gmock.gyp:gmock',
24 '<(DEPTH)/testing/gtest.gyp:gtest', 17 '<(DEPTH)/testing/gtest.gyp:gtest',
25 'compositor_bindings.gyp:webkit_compositor_bindings', 18 '<(DEPTH)/base/base.gyp:test_support_base',
26 ], 19 ],
27 'sources': [ 20 'sources': [
28 '<@(webkit_compositor_bindings_tests_sources)', 21 'compositor_bindings_dummy_unittest.cc',
29 'test/run_all_unittests.cc', 22 'test/run_all_unittests.cc',
30 ], 23 ],
31 'include_dirs': [
32 '<(DEPTH)'
33 ],
34 'conditions': [ 24 'conditions': [
35 ['OS == "android"', { 25 ['OS == "android"', {
36 'dependencies': [ 26 'dependencies': [
37 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 27 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
38 ], 28 ],
39 }], 29 }],
40 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { 30 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
41 'conditions': [ 31 'conditions': [
42 [ 'use_allocator!="none"', { 32 [ 'use_allocator!="none"', {
43 'dependencies': [ 33 'dependencies': [
(...skipping 15 matching lines...) Expand all
59 'webkit_compositor_bindings_unittests', 49 'webkit_compositor_bindings_unittests',
60 ], 50 ],
61 'variables': { 51 'variables': {
62 'test_suite_name': 'webkit_compositor_bindings_unittests', 52 'test_suite_name': 'webkit_compositor_bindings_unittests',
63 }, 53 },
64 'includes': [ '../../../build/apk_test.gypi' ], 54 'includes': [ '../../../build/apk_test.gypi' ],
65 }, 55 },
66 ], 56 ],
67 }], 57 }],
68 ], 58 ],
69 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698