| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 component("cc") { | |
| 6 output_name = "sky_viewer_cc" | |
| 7 | |
| 8 deps = [ | |
| 9 "//base", | |
| 10 "//base/third_party/dynamic_annotations", | |
| 11 "//cc", | |
| 12 "//gpu", | |
| 13 "//skia", | |
| 14 "//sky/engine", | |
| 15 "//ui/gfx", | |
| 16 "//ui/gfx/geometry", | |
| 17 ] | |
| 18 | |
| 19 defines = [ "SKY_VIEWER_CC_IMPLEMENTATION" ] | |
| 20 | |
| 21 forward_dependent_configs_from = [ "//skia" ] | |
| 22 | |
| 23 sources = [ | |
| 24 "sky_viewer_cc_export.h", | |
| 25 "web_animation_curve_common.cc", | |
| 26 "web_animation_curve_common.h", | |
| 27 "web_animation_impl.cc", | |
| 28 "web_animation_impl.h", | |
| 29 "web_compositor_support_impl.cc", | |
| 30 "web_compositor_support_impl.h", | |
| 31 "web_content_layer_impl.cc", | |
| 32 "web_content_layer_impl.h", | |
| 33 "web_external_bitmap_impl.cc", | |
| 34 "web_external_bitmap_impl.h", | |
| 35 "web_external_texture_layer_impl.cc", | |
| 36 "web_external_texture_layer_impl.h", | |
| 37 "web_filter_animation_curve_impl.cc", | |
| 38 "web_filter_animation_curve_impl.h", | |
| 39 "web_filter_operations_impl.cc", | |
| 40 "web_filter_operations_impl.h", | |
| 41 "web_float_animation_curve_impl.cc", | |
| 42 "web_float_animation_curve_impl.h", | |
| 43 "web_image_layer_impl.cc", | |
| 44 "web_image_layer_impl.h", | |
| 45 "web_layer_impl.cc", | |
| 46 "web_layer_impl.h", | |
| 47 "web_layer_impl_fixed_bounds.cc", | |
| 48 "web_layer_impl_fixed_bounds.h", | |
| 49 "web_to_cc_animation_delegate_adapter.cc", | |
| 50 "web_to_cc_animation_delegate_adapter.h", | |
| 51 "web_transform_animation_curve_impl.cc", | |
| 52 "web_transform_animation_curve_impl.h", | |
| 53 "web_transform_operations_impl.cc", | |
| 54 "web_transform_operations_impl.h", | |
| 55 ] | |
| 56 } | |
| 57 | |
| 58 test("sky_viewer_cc_unittests") { | |
| 59 deps = [ | |
| 60 ":cc", | |
| 61 "//base/test:run_all_unittests", | |
| 62 "//base/third_party/dynamic_annotations", | |
| 63 "//skia", | |
| 64 "//testing/gtest", | |
| 65 "//ui/gfx/geometry", | |
| 66 "//ui/gfx:test_support", | |
| 67 "//cc", | |
| 68 "//cc:test_support", | |
| 69 ] | |
| 70 | |
| 71 sources = [ | |
| 72 "web_animation_unittest.cc", | |
| 73 "web_float_animation_curve_unittest.cc", | |
| 74 "web_layer_impl_fixed_bounds_unittest.cc", | |
| 75 ] | |
| 76 } | |
| OLD | NEW |