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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 # GYP version: //cc/blink/cc_blink.gyp:cc_blink | 7 # GYP version: //cc/blink/cc_blink.gyp:cc_blink |
8 component("blink") { | 8 component("blink") { |
9 output_name = "cc_blink" | 9 output_name = "cc_blink" |
10 | 10 |
11 sources = [ | 11 sources = [ |
12 "cc_blink_export.h", | 12 "cc_blink_export.h", |
13 "context_provider_web_context.h", | 13 "context_provider_web_context.h", |
14 "scrollbar_impl.cc", | 14 "scrollbar_impl.cc", |
15 "scrollbar_impl.h", | 15 "scrollbar_impl.h", |
16 "web_animation_curve_common.cc", | 16 "web_animation_curve_common.cc", |
17 "web_animation_curve_common.h", | 17 "web_animation_curve_common.h", |
18 "web_animation_impl.cc", | 18 "web_animation_impl.cc", |
19 "web_animation_impl.h", | 19 "web_animation_impl.h", |
| 20 "web_compositor_animation_player_impl.cc", |
| 21 "web_compositor_animation_player_impl.h", |
| 22 "web_compositor_animation_timeline_impl.cc", |
| 23 "web_compositor_animation_timeline_impl.h", |
20 "web_compositor_support_impl.cc", | 24 "web_compositor_support_impl.cc", |
21 "web_compositor_support_impl.h", | 25 "web_compositor_support_impl.h", |
22 "web_content_layer_impl.cc", | 26 "web_content_layer_impl.cc", |
23 "web_content_layer_impl.h", | 27 "web_content_layer_impl.h", |
24 "web_display_item_list_impl.cc", | 28 "web_display_item_list_impl.cc", |
25 "web_display_item_list_impl.h", | 29 "web_display_item_list_impl.h", |
26 "web_external_bitmap_impl.cc", | 30 "web_external_bitmap_impl.cc", |
27 "web_external_bitmap_impl.h", | 31 "web_external_bitmap_impl.h", |
28 "web_external_texture_layer_impl.cc", | 32 "web_external_texture_layer_impl.cc", |
29 "web_external_texture_layer_impl.h", | 33 "web_external_texture_layer_impl.h", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "//base/third_party/dynamic_annotations", | 90 "//base/third_party/dynamic_annotations", |
87 "//skia", | 91 "//skia", |
88 "//testing/gtest", | 92 "//testing/gtest", |
89 "//ui/gfx/geometry", | 93 "//ui/gfx/geometry", |
90 "//ui/gfx:test_support", | 94 "//ui/gfx:test_support", |
91 "//cc", | 95 "//cc", |
92 "//cc:test_support", | 96 "//cc:test_support", |
93 ] | 97 ] |
94 } | 98 } |
95 } | 99 } |
OLD | NEW |