| 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 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", |
| 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", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "//cc:test_support", | 68 "//cc:test_support", |
| 69 "//sky/engine/public:sky_headers", | 69 "//sky/engine/public:sky_headers", |
| 70 ] | 70 ] |
| 71 | 71 |
| 72 sources = [ | 72 sources = [ |
| 73 "web_animation_unittest.cc", | 73 "web_animation_unittest.cc", |
| 74 "web_float_animation_curve_unittest.cc", | 74 "web_float_animation_curve_unittest.cc", |
| 75 "web_layer_impl_fixed_bounds_unittest.cc", | 75 "web_layer_impl_fixed_bounds_unittest.cc", |
| 76 ] | 76 ] |
| 77 } | 77 } |
| OLD | NEW |