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 # GYP version: //cc/blink/cc_blink.gyp:cc_blink | 5 # GYP version: //cc/blink/cc_blink.gyp:cc_blink |
6 component("blink") { | 6 component("blink") { |
7 output_name = "cc_blink" | 7 output_name = "cc_blink" |
8 | 8 |
9 public_deps = [ | |
10 "//skia", | |
11 ] | |
12 deps = [ | |
13 "//base", | |
14 "//base/third_party/dynamic_annotations", | |
15 "//cc", | |
16 "//gpu", | |
17 "//third_party/WebKit/public:blink", | |
18 "//ui/gfx", | |
19 "//ui/gfx/geometry", | |
20 ] | |
21 | |
22 defines = [ "CC_BLINK_IMPLEMENTATION" ] | |
23 | |
24 sources = [ | 9 sources = [ |
25 "cc_blink_export.h", | 10 "cc_blink_export.h", |
26 "scrollbar_impl.cc", | 11 "scrollbar_impl.cc", |
27 "scrollbar_impl.h", | 12 "scrollbar_impl.h", |
28 "web_animation_curve_common.cc", | 13 "web_animation_curve_common.cc", |
29 "web_animation_curve_common.h", | 14 "web_animation_curve_common.h", |
30 "web_animation_impl.cc", | 15 "web_animation_impl.cc", |
31 "web_animation_impl.h", | 16 "web_animation_impl.h", |
32 "web_compositor_support_impl.cc", | 17 "web_compositor_support_impl.cc", |
33 "web_compositor_support_impl.h", | 18 "web_compositor_support_impl.h", |
(...skipping 23 matching lines...) Expand all Loading... |
57 "web_scroll_offset_animation_curve_impl.h", | 42 "web_scroll_offset_animation_curve_impl.h", |
58 "web_scrollbar_layer_impl.cc", | 43 "web_scrollbar_layer_impl.cc", |
59 "web_scrollbar_layer_impl.h", | 44 "web_scrollbar_layer_impl.h", |
60 "web_to_cc_animation_delegate_adapter.cc", | 45 "web_to_cc_animation_delegate_adapter.cc", |
61 "web_to_cc_animation_delegate_adapter.h", | 46 "web_to_cc_animation_delegate_adapter.h", |
62 "web_transform_animation_curve_impl.cc", | 47 "web_transform_animation_curve_impl.cc", |
63 "web_transform_animation_curve_impl.h", | 48 "web_transform_animation_curve_impl.h", |
64 "web_transform_operations_impl.cc", | 49 "web_transform_operations_impl.cc", |
65 "web_transform_operations_impl.h", | 50 "web_transform_operations_impl.h", |
66 ] | 51 ] |
| 52 |
| 53 defines = [ "CC_BLINK_IMPLEMENTATION" ] |
| 54 |
| 55 public_deps = [ |
| 56 "//skia", |
| 57 ] |
| 58 |
| 59 deps = [ |
| 60 "//base", |
| 61 "//base/third_party/dynamic_annotations", |
| 62 "//cc", |
| 63 "//gpu", |
| 64 "//third_party/WebKit/public:blink", |
| 65 "//ui/gfx", |
| 66 "//ui/gfx/geometry", |
| 67 ] |
67 } | 68 } |
68 | 69 |
69 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests | 70 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests |
70 # TODO(GYP): make linking work on the mac. | 71 # TODO(GYP): make linking work on the mac. |
71 if (!is_mac) { | 72 if (!is_mac) { |
72 test("cc_blink_unittests") { | 73 test("cc_blink_unittests") { |
| 74 sources = [ |
| 75 "web_animation_unittest.cc", |
| 76 "web_float_animation_curve_unittest.cc", |
| 77 "web_layer_impl_fixed_bounds_unittest.cc", |
| 78 ] |
| 79 |
73 deps = [ | 80 deps = [ |
74 ":blink", | 81 ":blink", |
75 "//base/test:run_all_unittests", | 82 "//base/test:run_all_unittests", |
76 "//base/third_party/dynamic_annotations", | 83 "//base/third_party/dynamic_annotations", |
77 "//skia", | 84 "//skia", |
78 "//testing/gtest", | 85 "//testing/gtest", |
79 "//ui/gfx/geometry", | 86 "//ui/gfx/geometry", |
80 "//ui/gfx:test_support", | 87 "//ui/gfx:test_support", |
81 "//cc", | 88 "//cc", |
82 "//cc:test_support", | 89 "//cc:test_support", |
83 ] | 90 ] |
84 | |
85 sources = [ | |
86 "web_animation_unittest.cc", | |
87 "web_float_animation_curve_unittest.cc", | |
88 "web_layer_impl_fixed_bounds_unittest.cc", | |
89 ] | |
90 } | 91 } |
91 } | 92 } |
OLD | NEW |