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

Side by Side Diff: sky/viewer/cc/BUILD.gn

Issue 720713003: Remove WebScroll* (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/web/WebScrollbarThemePainter.cpp ('k') | sky/viewer/cc/scrollbar_impl.h » ('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 component("cc") { 5 component("cc") {
6 output_name = "sky_viewer_cc" 6 output_name = "sky_viewer_cc"
7 7
8 deps = [ 8 deps = [
9 "//base", 9 "//base",
10 "//base/third_party/dynamic_annotations", 10 "//base/third_party/dynamic_annotations",
11 "//cc", 11 "//cc",
12 "//gpu", 12 "//gpu",
13 "//skia", 13 "//skia",
14 "//sky/engine/public:blink", 14 "//sky/engine/public:blink",
15 "//ui/gfx", 15 "//ui/gfx",
16 "//ui/gfx/geometry", 16 "//ui/gfx/geometry",
17 ] 17 ]
18 18
19 defines = [ "SKY_VIEWER_CC_IMPLEMENTATION" ] 19 defines = [ "SKY_VIEWER_CC_IMPLEMENTATION" ]
20 20
21 forward_dependent_configs_from = [ "//skia" ] 21 forward_dependent_configs_from = [ "//skia" ]
22 22
23 sources = [ 23 sources = [
24 "sky_viewer_cc_export.h", 24 "sky_viewer_cc_export.h",
25 "scrollbar_impl.cc",
26 "scrollbar_impl.h",
27 "web_animation_curve_common.cc", 25 "web_animation_curve_common.cc",
28 "web_animation_curve_common.h", 26 "web_animation_curve_common.h",
29 "web_animation_impl.cc", 27 "web_animation_impl.cc",
30 "web_animation_impl.h", 28 "web_animation_impl.h",
31 "web_compositor_support_impl.cc", 29 "web_compositor_support_impl.cc",
32 "web_compositor_support_impl.h", 30 "web_compositor_support_impl.h",
33 "web_content_layer_impl.cc", 31 "web_content_layer_impl.cc",
34 "web_content_layer_impl.h", 32 "web_content_layer_impl.h",
35 "web_external_bitmap_impl.cc", 33 "web_external_bitmap_impl.cc",
36 "web_external_bitmap_impl.h", 34 "web_external_bitmap_impl.h",
37 "web_external_texture_layer_impl.cc", 35 "web_external_texture_layer_impl.cc",
38 "web_external_texture_layer_impl.h", 36 "web_external_texture_layer_impl.h",
39 "web_filter_animation_curve_impl.cc", 37 "web_filter_animation_curve_impl.cc",
40 "web_filter_animation_curve_impl.h", 38 "web_filter_animation_curve_impl.h",
41 "web_filter_operations_impl.cc", 39 "web_filter_operations_impl.cc",
42 "web_filter_operations_impl.h", 40 "web_filter_operations_impl.h",
43 "web_float_animation_curve_impl.cc", 41 "web_float_animation_curve_impl.cc",
44 "web_float_animation_curve_impl.h", 42 "web_float_animation_curve_impl.h",
45 "web_image_layer_impl.cc", 43 "web_image_layer_impl.cc",
46 "web_image_layer_impl.h", 44 "web_image_layer_impl.h",
47 "web_layer_impl.cc", 45 "web_layer_impl.cc",
48 "web_layer_impl.h", 46 "web_layer_impl.h",
49 "web_layer_impl_fixed_bounds.cc", 47 "web_layer_impl_fixed_bounds.cc",
50 "web_layer_impl_fixed_bounds.h", 48 "web_layer_impl_fixed_bounds.h",
51 "web_scroll_offset_animation_curve_impl.cc",
52 "web_scroll_offset_animation_curve_impl.h",
53 "web_scrollbar_layer_impl.cc",
54 "web_scrollbar_layer_impl.h",
55 "web_to_cc_animation_delegate_adapter.cc", 49 "web_to_cc_animation_delegate_adapter.cc",
56 "web_to_cc_animation_delegate_adapter.h", 50 "web_to_cc_animation_delegate_adapter.h",
57 "web_transform_animation_curve_impl.cc", 51 "web_transform_animation_curve_impl.cc",
58 "web_transform_animation_curve_impl.h", 52 "web_transform_animation_curve_impl.h",
59 "web_transform_operations_impl.cc", 53 "web_transform_operations_impl.cc",
60 "web_transform_operations_impl.h", 54 "web_transform_operations_impl.h",
61 ] 55 ]
62 } 56 }
63 57
64 test("sky_viewer_cc_unittests") { 58 test("sky_viewer_cc_unittests") {
65 deps = [ 59 deps = [
66 ":cc", 60 ":cc",
67 "//base/test:run_all_unittests", 61 "//base/test:run_all_unittests",
68 "//base/third_party/dynamic_annotations", 62 "//base/third_party/dynamic_annotations",
69 "//skia", 63 "//skia",
70 "//testing/gtest", 64 "//testing/gtest",
71 "//ui/gfx/geometry", 65 "//ui/gfx/geometry",
72 "//ui/gfx:test_support", 66 "//ui/gfx:test_support",
73 "//cc", 67 "//cc",
74 "//cc:test_support", 68 "//cc:test_support",
75 "//sky/engine/public:sky_headers", 69 "//sky/engine/public:sky_headers",
76 ] 70 ]
77 71
78 sources = [ 72 sources = [
79 "web_animation_unittest.cc", 73 "web_animation_unittest.cc",
80 "web_float_animation_curve_unittest.cc", 74 "web_float_animation_curve_unittest.cc",
81 "web_layer_impl_fixed_bounds_unittest.cc", 75 "web_layer_impl_fixed_bounds_unittest.cc",
82 ] 76 ]
83 } 77 }
OLDNEW
« no previous file with comments | « sky/engine/web/WebScrollbarThemePainter.cpp ('k') | sky/viewer/cc/scrollbar_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698