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

Side by Side Diff: cc/blink/BUILD.gn

Issue 1547893003: WIP - compositor worker mega patch. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « cc/animation/layer_tree_mutator.h ('k') | cc/blink/cc_blink.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "mutation_conversions.cc",
15 "mutation_conversions.h",
14 "scrollbar_impl.cc", 16 "scrollbar_impl.cc",
15 "scrollbar_impl.h", 17 "scrollbar_impl.h",
16 "web_animation_curve_common.cc", 18 "web_animation_curve_common.cc",
17 "web_animation_curve_common.h", 19 "web_animation_curve_common.h",
18 "web_animation_impl.cc", 20 "web_animation_impl.cc",
19 "web_animation_impl.h", 21 "web_animation_impl.h",
20 "web_compositor_animation_player_impl.cc", 22 "web_compositor_animation_player_impl.cc",
21 "web_compositor_animation_player_impl.h", 23 "web_compositor_animation_player_impl.h",
22 "web_compositor_animation_timeline_impl.cc", 24 "web_compositor_animation_timeline_impl.cc",
23 "web_compositor_animation_timeline_impl.h", 25 "web_compositor_animation_timeline_impl.h",
26 "web_compositor_mutable_state_impl.cc",
27 "web_compositor_mutable_state_impl.h",
28 "web_compositor_mutable_state_provider_impl.cc",
29 "web_compositor_mutable_state_provider_impl.h",
24 "web_compositor_support_impl.cc", 30 "web_compositor_support_impl.cc",
25 "web_compositor_support_impl.h", 31 "web_compositor_support_impl.h",
26 "web_content_layer_impl.cc", 32 "web_content_layer_impl.cc",
27 "web_content_layer_impl.h", 33 "web_content_layer_impl.h",
28 "web_display_item_list_impl.cc", 34 "web_display_item_list_impl.cc",
29 "web_display_item_list_impl.h", 35 "web_display_item_list_impl.h",
30 "web_external_bitmap_impl.cc", 36 "web_external_bitmap_impl.cc",
31 "web_external_bitmap_impl.h", 37 "web_external_bitmap_impl.h",
32 "web_external_texture_layer_impl.cc", 38 "web_external_texture_layer_impl.cc",
33 "web_external_texture_layer_impl.h", 39 "web_external_texture_layer_impl.h",
34 "web_filter_animation_curve_impl.cc", 40 "web_filter_animation_curve_impl.cc",
35 "web_filter_animation_curve_impl.h", 41 "web_filter_animation_curve_impl.h",
36 "web_filter_operations_impl.cc", 42 "web_filter_operations_impl.cc",
37 "web_filter_operations_impl.h", 43 "web_filter_operations_impl.h",
38 "web_float_animation_curve_impl.cc", 44 "web_float_animation_curve_impl.cc",
39 "web_float_animation_curve_impl.h", 45 "web_float_animation_curve_impl.h",
40 "web_image_layer_impl.cc", 46 "web_image_layer_impl.cc",
41 "web_image_layer_impl.h", 47 "web_image_layer_impl.h",
42 "web_layer_impl.cc", 48 "web_layer_impl.cc",
43 "web_layer_impl.h", 49 "web_layer_impl.h",
44 "web_layer_impl_fixed_bounds.cc", 50 "web_layer_impl_fixed_bounds.cc",
45 "web_layer_impl_fixed_bounds.h", 51 "web_layer_impl_fixed_bounds.h",
52 "web_mutator_client_impl.cc",
53 "web_mutator_client_impl.h",
46 "web_scroll_offset_animation_curve_impl.cc", 54 "web_scroll_offset_animation_curve_impl.cc",
47 "web_scroll_offset_animation_curve_impl.h", 55 "web_scroll_offset_animation_curve_impl.h",
48 "web_scrollbar_layer_impl.cc", 56 "web_scrollbar_layer_impl.cc",
49 "web_scrollbar_layer_impl.h", 57 "web_scrollbar_layer_impl.h",
50 "web_to_cc_animation_delegate_adapter.cc", 58 "web_to_cc_animation_delegate_adapter.cc",
51 "web_to_cc_animation_delegate_adapter.h", 59 "web_to_cc_animation_delegate_adapter.h",
52 "web_transform_animation_curve_impl.cc", 60 "web_transform_animation_curve_impl.cc",
53 "web_transform_animation_curve_impl.h", 61 "web_transform_animation_curve_impl.h",
54 "web_transform_operations_impl.cc", 62 "web_transform_operations_impl.cc",
55 "web_transform_operations_impl.h", 63 "web_transform_operations_impl.h",
(...skipping 15 matching lines...) Expand all
71 "//ui/gfx/geometry", 79 "//ui/gfx/geometry",
72 ] 80 ]
73 } 81 }
74 82
75 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests 83 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests
76 # TODO(GYP): make linking work on the mac. 84 # TODO(GYP): make linking work on the mac.
77 if (!is_mac) { 85 if (!is_mac) {
78 test("cc_blink_unittests") { 86 test("cc_blink_unittests") {
79 sources = [ 87 sources = [
80 "web_animation_unittest.cc", 88 "web_animation_unittest.cc",
89 "web_compositor_mutable_state_impl_unittest.cc",
81 "web_float_animation_curve_unittest.cc", 90 "web_float_animation_curve_unittest.cc",
82 "web_layer_impl_fixed_bounds_unittest.cc", 91 "web_layer_impl_fixed_bounds_unittest.cc",
83 92
84 # Setup. 93 # Setup.
85 "test/cc_blink_test_suite.cc", 94 "test/cc_blink_test_suite.cc",
86 "test/run_all_unittests.cc", 95 "test/run_all_unittests.cc",
87 ] 96 ]
88 97
89 deps = [ 98 deps = [
90 ":blink", 99 ":blink",
91 "//base/test:test_support", 100 "//base/test:test_support",
92 "//base/third_party/dynamic_annotations", 101 "//base/third_party/dynamic_annotations",
93 "//cc", 102 "//cc",
94 "//cc:test_support", 103 "//cc:test_support",
95 "//skia", 104 "//skia",
96 "//testing/gtest", 105 "//testing/gtest",
97 "//third_party/WebKit/public:blink", 106 "//third_party/WebKit/public:blink",
98 "//ui/gfx:test_support", 107 "//ui/gfx:test_support",
99 "//ui/gfx/geometry", 108 "//ui/gfx/geometry",
100 ] 109 ]
101 } 110 }
102 } 111 }
OLDNEW
« no previous file with comments | « cc/animation/layer_tree_mutator.h ('k') | cc/blink/cc_blink.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698