| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "//cc", | 64 "//cc", |
| 65 "//gpu", | 65 "//gpu", |
| 66 "//third_party/WebKit/public:blink", | 66 "//third_party/WebKit/public:blink", |
| 67 "//ui/gfx", | 67 "//ui/gfx", |
| 68 "//ui/gfx/geometry", | 68 "//ui/gfx/geometry", |
| 69 ] | 69 ] |
| 70 } | 70 } |
| 71 | 71 |
| 72 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests | 72 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests |
| 73 # TODO(GYP): make linking work on the mac. | 73 # TODO(GYP): make linking work on the mac. |
| 74 if (!is_mac) { | 74 if (!is_mac && (!is_win || link_chrome_on_windows)) { |
| 75 test("cc_blink_unittests") { | 75 test("cc_blink_unittests") { |
| 76 sources = [ | 76 sources = [ |
| 77 "web_animation_unittest.cc", | 77 "web_animation_unittest.cc", |
| 78 "web_float_animation_curve_unittest.cc", | 78 "web_float_animation_curve_unittest.cc", |
| 79 "web_layer_impl_fixed_bounds_unittest.cc", | 79 "web_layer_impl_fixed_bounds_unittest.cc", |
| 80 ] | 80 ] |
| 81 | 81 |
| 82 deps = [ | 82 deps = [ |
| 83 ":blink", | 83 ":blink", |
| 84 "//base/test:run_all_unittests", | 84 "//base/test:run_all_unittests", |
| 85 "//base/third_party/dynamic_annotations", | 85 "//base/third_party/dynamic_annotations", |
| 86 "//skia", | 86 "//skia", |
| 87 "//testing/gtest", | 87 "//testing/gtest", |
| 88 "//ui/gfx/geometry", | 88 "//ui/gfx/geometry", |
| 89 "//ui/gfx:test_support", | 89 "//ui/gfx:test_support", |
| 90 "//cc", | 90 "//cc", |
| 91 "//cc:test_support", | 91 "//cc:test_support", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 } | 94 } |
| OLD | NEW |