| 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", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "web_filter_operations_impl.cc", | 41 "web_filter_operations_impl.cc", |
| 42 "web_filter_operations_impl.h", | 42 "web_filter_operations_impl.h", |
| 43 "web_float_animation_curve_impl.cc", | 43 "web_float_animation_curve_impl.cc", |
| 44 "web_float_animation_curve_impl.h", | 44 "web_float_animation_curve_impl.h", |
| 45 "web_image_layer_impl.cc", | 45 "web_image_layer_impl.cc", |
| 46 "web_image_layer_impl.h", | 46 "web_image_layer_impl.h", |
| 47 "web_layer_impl.cc", | 47 "web_layer_impl.cc", |
| 48 "web_layer_impl.h", | 48 "web_layer_impl.h", |
| 49 "web_layer_impl_fixed_bounds.cc", | 49 "web_layer_impl_fixed_bounds.cc", |
| 50 "web_layer_impl_fixed_bounds.h", | 50 "web_layer_impl_fixed_bounds.h", |
| 51 "web_nine_patch_layer_impl.cc", | |
| 52 "web_nine_patch_layer_impl.h", | |
| 53 "web_scroll_offset_animation_curve_impl.cc", | 51 "web_scroll_offset_animation_curve_impl.cc", |
| 54 "web_scroll_offset_animation_curve_impl.h", | 52 "web_scroll_offset_animation_curve_impl.h", |
| 55 "web_scrollbar_layer_impl.cc", | 53 "web_scrollbar_layer_impl.cc", |
| 56 "web_scrollbar_layer_impl.h", | 54 "web_scrollbar_layer_impl.h", |
| 57 "web_to_cc_animation_delegate_adapter.cc", | 55 "web_to_cc_animation_delegate_adapter.cc", |
| 58 "web_to_cc_animation_delegate_adapter.h", | 56 "web_to_cc_animation_delegate_adapter.h", |
| 59 "web_transform_animation_curve_impl.cc", | 57 "web_transform_animation_curve_impl.cc", |
| 60 "web_transform_animation_curve_impl.h", | 58 "web_transform_animation_curve_impl.h", |
| 61 "web_transform_operations_impl.cc", | 59 "web_transform_operations_impl.cc", |
| 62 "web_transform_operations_impl.h", | 60 "web_transform_operations_impl.h", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 75 "//cc", | 73 "//cc", |
| 76 "//cc:test_support", | 74 "//cc:test_support", |
| 77 ] | 75 ] |
| 78 | 76 |
| 79 sources = [ | 77 sources = [ |
| 80 "web_animation_unittest.cc", | 78 "web_animation_unittest.cc", |
| 81 "web_float_animation_curve_unittest.cc", | 79 "web_float_animation_curve_unittest.cc", |
| 82 "web_layer_impl_fixed_bounds_unittest.cc", | 80 "web_layer_impl_fixed_bounds_unittest.cc", |
| 83 ] | 81 ] |
| 84 } | 82 } |
| OLD | NEW |