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("//cc/cc.gni") | 5 import("//cc/cc.gni") |
6 | 6 |
7 cc_component("blink") { | 7 cc_component("blink") { |
8 output_name = "cc_blink" | 8 output_name = "cc_blink" |
9 | 9 |
10 sources = [ | 10 sources = [ |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "//ui/gfx/geometry", | 46 "//ui/gfx/geometry", |
47 ] | 47 ] |
48 } | 48 } |
49 | 49 |
50 cc_test("cc_blink_unittests") { | 50 cc_test("cc_blink_unittests") { |
51 sources = [ | 51 sources = [ |
52 "web_layer_impl_fixed_bounds_unittest.cc", | 52 "web_layer_impl_fixed_bounds_unittest.cc", |
53 | 53 |
54 # Setup. | 54 # Setup. |
55 "test/cc_blink_test_suite.cc", | 55 "test/cc_blink_test_suite.cc", |
| 56 "test/cc_blink_test_suite.h", |
56 "test/run_all_unittests.cc", | 57 "test/run_all_unittests.cc", |
57 ] | 58 ] |
58 | 59 |
59 deps = [ | 60 deps = [ |
60 ":blink", | 61 ":blink", |
61 "//base/test:test_support", | 62 "//base/test:test_support", |
62 "//base/third_party/dynamic_annotations", | 63 "//base/third_party/dynamic_annotations", |
63 "//cc", | 64 "//cc", |
64 "//cc:test_support", | 65 "//cc:test_support", |
65 "//skia", | 66 "//skia", |
66 "//testing/gmock", | 67 "//testing/gmock", |
67 "//testing/gtest", | 68 "//testing/gtest", |
68 "//third_party/WebKit/public:blink", | 69 "//third_party/WebKit/public:blink", |
69 "//ui/gfx:test_support", | 70 "//ui/gfx:test_support", |
70 "//ui/gfx/geometry", | 71 "//ui/gfx/geometry", |
71 ] | 72 ] |
72 } | 73 } |
OLD | NEW |