| 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 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 public_deps = [ | 38 public_deps = [ |
| 39 "//skia", | 39 "//skia", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 deps = [ | 42 deps = [ |
| 43 "//base", | 43 "//base", |
| 44 "//base/third_party/dynamic_annotations", | 44 "//base/third_party/dynamic_annotations", |
| 45 "//cc", | 45 "//cc", |
| 46 "//gpu", | 46 "//gpu", |
| 47 "//third_party/WebKit/public:blink_for_unittests", | 47 "//third_party/WebKit/public:blink", |
| 48 "//ui/gfx", | 48 "//ui/gfx", |
| 49 "//ui/gfx/geometry", | 49 "//ui/gfx/geometry", |
| 50 ] | 50 ] |
| 51 } | 51 } |
| 52 | 52 |
| 53 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests | 53 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests |
| 54 # TODO(GYP): make linking work on the mac. | 54 # TODO(GYP): make linking work on the mac. |
| 55 if (!is_mac) { | 55 if (!is_mac) { |
| 56 test("cc_blink_unittests") { | 56 test("cc_blink_unittests") { |
| 57 sources = [ | 57 sources = [ |
| 58 "web_layer_impl_fixed_bounds_unittest.cc", | 58 "web_layer_impl_fixed_bounds_unittest.cc", |
| 59 | 59 |
| 60 # Setup. | 60 # Setup. |
| 61 "test/cc_blink_test_suite.cc", | 61 "test/cc_blink_test_suite.cc", |
| 62 "test/run_all_unittests.cc", | 62 "test/run_all_unittests.cc", |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 deps = [ | 65 deps = [ |
| 66 ":blink", | 66 ":blink", |
| 67 "//base/test:test_support", | 67 "//base/test:test_support", |
| 68 "//base/third_party/dynamic_annotations", | 68 "//base/third_party/dynamic_annotations", |
| 69 "//cc", | 69 "//cc", |
| 70 "//cc:test_support", | 70 "//cc:test_support", |
| 71 "//skia", | 71 "//skia", |
| 72 "//testing/gmock", | 72 "//testing/gmock", |
| 73 "//testing/gtest", | 73 "//testing/gtest", |
| 74 "//third_party/WebKit/public:blink", | 74 "//third_party/WebKit/public:blink_for_unittests", |
| 75 "//ui/gfx:test_support", | 75 "//ui/gfx:test_support", |
| 76 "//ui/gfx/geometry", | 76 "//ui/gfx/geometry", |
| 77 ] | 77 ] |
| 78 } | 78 } |
| 79 } | 79 } |
| OLD | NEW |