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 # GYP version: //cc/blink/cc_blink.gyp:cc_blink | 5 # GYP version: //cc/blink/cc_blink.gyp:cc_blink |
6 component("blink") { | 6 component("blink") { |
7 output_name = "cc_blink" | 7 output_name = "cc_blink" |
8 | 8 |
9 public_deps = [ | 9 public_deps = [ |
10 "//skia", | 10 "//skia", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "web_to_cc_animation_delegate_adapter.cc", | 58 "web_to_cc_animation_delegate_adapter.cc", |
59 "web_to_cc_animation_delegate_adapter.h", | 59 "web_to_cc_animation_delegate_adapter.h", |
60 "web_transform_animation_curve_impl.cc", | 60 "web_transform_animation_curve_impl.cc", |
61 "web_transform_animation_curve_impl.h", | 61 "web_transform_animation_curve_impl.h", |
62 "web_transform_operations_impl.cc", | 62 "web_transform_operations_impl.cc", |
63 "web_transform_operations_impl.h", | 63 "web_transform_operations_impl.h", |
64 ] | 64 ] |
65 } | 65 } |
66 | 66 |
67 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests | 67 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests |
68 test("cc_blink_unittests") { | 68 # TODO(GYP): make linking work on the mac. |
69 deps = [ | 69 if (!is_mac) { |
70 ":blink", | 70 test("cc_blink_unittests") { |
71 "//base/test:run_all_unittests", | 71 deps = [ |
72 "//base/third_party/dynamic_annotations", | 72 ":blink", |
73 "//skia", | 73 "//base/test:run_all_unittests", |
74 "//testing/gtest", | 74 "//base/third_party/dynamic_annotations", |
75 "//ui/gfx/geometry", | 75 "//skia", |
76 "//ui/gfx:test_support", | 76 "//testing/gtest", |
77 "//cc", | 77 "//ui/gfx/geometry", |
78 "//cc:test_support", | 78 "//ui/gfx:test_support", |
79 ] | 79 "//cc", |
| 80 "//cc:test_support", |
| 81 ] |
80 | 82 |
81 sources = [ | 83 sources = [ |
82 "web_animation_unittest.cc", | 84 "web_animation_unittest.cc", |
83 "web_float_animation_curve_unittest.cc", | 85 "web_float_animation_curve_unittest.cc", |
84 "web_layer_impl_fixed_bounds_unittest.cc", | 86 "web_layer_impl_fixed_bounds_unittest.cc", |
85 ] | 87 ] |
| 88 } |
86 } | 89 } |
OLD | NEW |