OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //cc/blink/cc_blink_unittests | 8 # GN version: //cc/blink/cc_blink_unittests |
9 'target_name': 'cc_blink_unittests', | 9 'target_name': 'cc_blink_unittests', |
10 'type': '<(gtest_target_type)', | 10 'type': '<(gtest_target_type)', |
11 'dependencies': [ | 11 'dependencies': [ |
12 '../../base/base.gyp:test_support_base', | 12 '../../base/base.gyp:test_support_base', |
13 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 13 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
14 '../../skia/skia.gyp:skia', | 14 '../../skia/skia.gyp:skia', |
15 '../../testing/gtest.gyp:gtest', | 15 '../../testing/gtest.gyp:gtest', |
16 '../../ui/gfx/gfx.gyp:gfx_geometry', | 16 '../../ui/gfx/gfx.gyp:gfx_geometry', |
17 '../../ui/gfx/gfx.gyp:gfx_test_support', | 17 '../../ui/gfx/gfx.gyp:gfx_test_support', |
18 '../cc.gyp:cc', | 18 '../cc.gyp:cc', |
19 '../cc_tests.gyp:cc_test_support', | 19 '../cc_tests.gyp:cc_test_support', |
20 'cc_blink.gyp:cc_blink', | 20 'cc_blink.gyp:cc_blink', |
21 ], | 21 ], |
22 'sources': [ | 22 'sources': [ |
23 '../../base/test/run_all_unittests.cc', | |
24 'web_animation_unittest.cc', | 23 'web_animation_unittest.cc', |
25 'web_float_animation_curve_unittest.cc', | 24 'web_float_animation_curve_unittest.cc', |
26 'web_layer_impl_fixed_bounds_unittest.cc', | 25 'web_layer_impl_fixed_bounds_unittest.cc', |
| 26 '../../base/test/run_all_unittests.cc', |
27 ], | 27 ], |
28 } | 28 } |
29 ], | 29 ], |
30 'conditions': [ | 30 'conditions': [ |
31 ['OS == "android"', | 31 ['OS == "android"', |
32 { | 32 { |
33 'targets': [ | 33 'targets': [ |
34 { | 34 { |
35 'target_name': 'cc_blink_unittests_apk', | 35 'target_name': 'cc_blink_unittests_apk', |
36 'type': 'none', | 36 'type': 'none', |
37 'dependencies': [ | 37 'dependencies': [ |
38 'cc_blink_unittests', | 38 'cc_blink_unittests', |
39 ], | 39 ], |
40 'variables': { | 40 'variables': { |
41 'test_suite_name': 'cc_blink_unittests', | 41 'test_suite_name': 'cc_blink_unittests', |
42 }, | 42 }, |
43 'includes': [ '../../build/apk_test.gypi' ], | 43 'includes': [ '../../build/apk_test.gypi' ], |
44 }, | 44 }, |
45 ], | 45 ], |
46 } | 46 } |
47 ] | 47 ] |
48 ], | 48 ], |
49 | 49 |
50 } | 50 } |
OLD | NEW |