| 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 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 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 "web_filter_operations_impl.cc", | 36 "web_filter_operations_impl.cc", |
| 37 "web_filter_operations_impl.h", | 37 "web_filter_operations_impl.h", |
| 38 "web_float_animation_curve_impl.cc", | 38 "web_float_animation_curve_impl.cc", |
| 39 "web_float_animation_curve_impl.h", | 39 "web_float_animation_curve_impl.h", |
| 40 "web_image_layer_impl.cc", | 40 "web_image_layer_impl.cc", |
| 41 "web_image_layer_impl.h", | 41 "web_image_layer_impl.h", |
| 42 "web_layer_impl.cc", | 42 "web_layer_impl.cc", |
| 43 "web_layer_impl.h", | 43 "web_layer_impl.h", |
| 44 "web_layer_impl_fixed_bounds.cc", | 44 "web_layer_impl_fixed_bounds.cc", |
| 45 "web_layer_impl_fixed_bounds.h", | 45 "web_layer_impl_fixed_bounds.h", |
| 46 "web_mutable_state_impl.cc", |
| 47 "web_mutable_state_impl.h", |
| 46 "web_scroll_offset_animation_curve_impl.cc", | 48 "web_scroll_offset_animation_curve_impl.cc", |
| 47 "web_scroll_offset_animation_curve_impl.h", | 49 "web_scroll_offset_animation_curve_impl.h", |
| 48 "web_scrollbar_layer_impl.cc", | 50 "web_scrollbar_layer_impl.cc", |
| 49 "web_scrollbar_layer_impl.h", | 51 "web_scrollbar_layer_impl.h", |
| 50 "web_to_cc_animation_delegate_adapter.cc", | 52 "web_to_cc_animation_delegate_adapter.cc", |
| 51 "web_to_cc_animation_delegate_adapter.h", | 53 "web_to_cc_animation_delegate_adapter.h", |
| 52 "web_transform_animation_curve_impl.cc", | 54 "web_transform_animation_curve_impl.cc", |
| 53 "web_transform_animation_curve_impl.h", | 55 "web_transform_animation_curve_impl.h", |
| 54 "web_transform_operations_impl.cc", | 56 "web_transform_operations_impl.cc", |
| 55 "web_transform_operations_impl.h", | 57 "web_transform_operations_impl.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 73 } | 75 } |
| 74 | 76 |
| 75 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests | 77 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests |
| 76 # TODO(GYP): make linking work on the mac. | 78 # TODO(GYP): make linking work on the mac. |
| 77 if (!is_mac) { | 79 if (!is_mac) { |
| 78 test("cc_blink_unittests") { | 80 test("cc_blink_unittests") { |
| 79 sources = [ | 81 sources = [ |
| 80 "web_animation_unittest.cc", | 82 "web_animation_unittest.cc", |
| 81 "web_float_animation_curve_unittest.cc", | 83 "web_float_animation_curve_unittest.cc", |
| 82 "web_layer_impl_fixed_bounds_unittest.cc", | 84 "web_layer_impl_fixed_bounds_unittest.cc", |
| 85 "web_mutable_state_unittest.cc", |
| 83 | 86 |
| 84 # Setup. | 87 # Setup. |
| 85 "test/cc_blink_test_suite.cc", | 88 "test/cc_blink_test_suite.cc", |
| 86 "test/run_all_unittests.cc", | 89 "test/run_all_unittests.cc", |
| 87 ] | 90 ] |
| 88 | 91 |
| 89 deps = [ | 92 deps = [ |
| 90 ":blink", | 93 ":blink", |
| 91 "//base/test:test_support", | 94 "//base/test:test_support", |
| 92 "//base/third_party/dynamic_annotations", | 95 "//base/third_party/dynamic_annotations", |
| 93 "//skia", | 96 "//skia", |
| 94 "//testing/gtest", | 97 "//testing/gtest", |
| 95 "//third_party/WebKit/public:blink", | 98 "//third_party/WebKit/public:blink", |
| 96 "//ui/gfx/geometry", | 99 "//ui/gfx/geometry", |
| 97 "//ui/gfx:test_support", | 100 "//ui/gfx:test_support", |
| 98 "//cc", | 101 "//cc", |
| 99 "//cc:test_support", | 102 "//cc:test_support", |
| 100 ] | 103 ] |
| 101 } | 104 } |
| 102 } | 105 } |
| OLD | NEW |