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

Side by Side Diff: content/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: 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.
jam 2014/06/05 15:24:07 ditto for content_tests.gypi
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 'content_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 ], 12 ],
13 }, 13 },
14 'targets': [ 14 'targets': [
15 { 15 {
16 'target_name': 'webkit_compositor_bindings_unittests', 16 'target_name': 'content_compositor_bindings_unittests',
17 'type' : '<(gtest_target_type)', 17 'type' : '<(gtest_target_type)',
18 'dependencies': [ 18 'dependencies': [
19 '<(DEPTH)/base/base.gyp:test_support_base', 19 '<(DEPTH)/base/base.gyp:test_support_base',
20 '<(DEPTH)/cc/cc.gyp:cc', 20 '<(DEPTH)/cc/cc.gyp:cc',
21 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', 21 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support',
22 '<(DEPTH)/skia/skia.gyp:skia', 22 '<(DEPTH)/skia/skia.gyp:skia',
23 '<(DEPTH)/testing/gmock.gyp:gmock', 23 '<(DEPTH)/testing/gmock.gyp:gmock',
24 '<(DEPTH)/testing/gtest.gyp:gtest', 24 '<(DEPTH)/testing/gtest.gyp:gtest',
25 'compositor_bindings.gyp:webkit_compositor_bindings', 25 'compositor_bindings.gyp:content_compositor_bindings',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 '<@(webkit_compositor_bindings_tests_sources)', 28 '<@(content_compositor_bindings_tests_sources)',
29 'test/run_all_unittests.cc', 29 'test/run_all_unittests.cc',
30 ], 30 ],
31 'include_dirs': [ 31 'include_dirs': [
32 '<(DEPTH)' 32 '<(DEPTH)'
33 ], 33 ],
34 'conditions': [ 34 'conditions': [
35 ['OS == "android"', { 35 ['OS == "android"', {
36 'dependencies': [ 36 'dependencies': [
37 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 37 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
38 ], 38 ],
39 }], 39 }],
40 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { 40 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
41 'conditions': [ 41 'conditions': [
42 [ 'use_allocator!="none"', { 42 [ 'use_allocator!="none"', {
43 'dependencies': [ 43 'dependencies': [
44 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 44 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
45 ], 45 ],
46 }], 46 }],
47 ], 47 ],
48 }], 48 }],
49 ], 49 ],
50 }, 50 },
51 ], 51 ],
52 'conditions': [ 52 'conditions': [
53 ['OS == "android"', { 53 ['OS == "android"', {
54 'targets': [ 54 'targets': [
55 { 55 {
56 'target_name': 'webkit_compositor_bindings_unittests_apk', 56 'target_name': 'content_compositor_bindings_unittests_apk',
57 'type': 'none', 57 'type': 'none',
58 'dependencies': [ 58 'dependencies': [
59 'webkit_compositor_bindings_unittests', 59 'content_compositor_bindings_unittests',
60 ], 60 ],
61 'variables': { 61 'variables': {
62 'test_suite_name': 'webkit_compositor_bindings_unittests', 62 'test_suite_name': 'content_compositor_bindings_unittests',
63 }, 63 },
64 'includes': [ '../../../build/apk_test.gypi' ], 64 'includes': [ '../../../build/apk_test.gypi' ],
65 }, 65 },
66 ], 66 ],
67 }], 67 }],
68 ], 68 ],
69 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698