| 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 21 matching lines...) Expand all Loading... |
| 32 defines = [ "CC_BLINK_IMPLEMENTATION" ] | 32 defines = [ "CC_BLINK_IMPLEMENTATION" ] |
| 33 | 33 |
| 34 public_deps = [ | 34 public_deps = [ |
| 35 "//skia", | 35 "//skia", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 deps = [ | 38 deps = [ |
| 39 "//base", | 39 "//base", |
| 40 "//base/third_party/dynamic_annotations", | 40 "//base/third_party/dynamic_annotations", |
| 41 "//cc", | 41 "//cc", |
| 42 "//cc/paint", |
| 42 "//gpu", | 43 "//gpu", |
| 43 "//third_party/WebKit/public:blink", | 44 "//third_party/WebKit/public:blink", |
| 44 "//ui/gfx", | 45 "//ui/gfx", |
| 45 "//ui/gfx/geometry", | 46 "//ui/gfx/geometry", |
| 46 ] | 47 ] |
| 47 } | 48 } |
| 48 | 49 |
| 49 cc_test("cc_blink_unittests") { | 50 cc_test("cc_blink_unittests") { |
| 50 sources = [ | 51 sources = [ |
| 51 "web_layer_impl_fixed_bounds_unittest.cc", | 52 "web_layer_impl_fixed_bounds_unittest.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 62 "//cc", | 63 "//cc", |
| 63 "//cc:test_support", | 64 "//cc:test_support", |
| 64 "//skia", | 65 "//skia", |
| 65 "//testing/gmock", | 66 "//testing/gmock", |
| 66 "//testing/gtest", | 67 "//testing/gtest", |
| 67 "//third_party/WebKit/public:blink", | 68 "//third_party/WebKit/public:blink", |
| 68 "//ui/gfx:test_support", | 69 "//ui/gfx:test_support", |
| 69 "//ui/gfx/geometry", | 70 "//ui/gfx/geometry", |
| 70 ] | 71 ] |
| 71 } | 72 } |
| OLD | NEW |