| 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 | |
| 8 component("blink") { | 7 component("blink") { |
| 9 output_name = "cc_blink" | 8 output_name = "cc_blink" |
| 10 | 9 |
| 11 sources = [ | 10 sources = [ |
| 12 "cc_blink_export.h", | 11 "cc_blink_export.h", |
| 13 "scrollbar_impl.cc", | 12 "scrollbar_impl.cc", |
| 14 "scrollbar_impl.h", | 13 "scrollbar_impl.h", |
| 15 "web_compositor_support_impl.cc", | 14 "web_compositor_support_impl.cc", |
| 16 "web_compositor_support_impl.h", | 15 "web_compositor_support_impl.h", |
| 17 "web_content_layer_impl.cc", | 16 "web_content_layer_impl.cc", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 40 "//base", | 39 "//base", |
| 41 "//base/third_party/dynamic_annotations", | 40 "//base/third_party/dynamic_annotations", |
| 42 "//cc", | 41 "//cc", |
| 43 "//gpu", | 42 "//gpu", |
| 44 "//third_party/WebKit/public:blink", | 43 "//third_party/WebKit/public:blink", |
| 45 "//ui/gfx", | 44 "//ui/gfx", |
| 46 "//ui/gfx/geometry", | 45 "//ui/gfx/geometry", |
| 47 ] | 46 ] |
| 48 } | 47 } |
| 49 | 48 |
| 50 # GYP version: //cc/blink/cc_blink_tests.gyp:cc_blink_unittests | |
| 51 test("cc_blink_unittests") { | 49 test("cc_blink_unittests") { |
| 52 sources = [ | 50 sources = [ |
| 53 "web_layer_impl_fixed_bounds_unittest.cc", | 51 "web_layer_impl_fixed_bounds_unittest.cc", |
| 54 | 52 |
| 55 # Setup. | 53 # Setup. |
| 56 "test/cc_blink_test_suite.cc", | 54 "test/cc_blink_test_suite.cc", |
| 57 "test/run_all_unittests.cc", | 55 "test/run_all_unittests.cc", |
| 58 ] | 56 ] |
| 59 | 57 |
| 60 deps = [ | 58 deps = [ |
| 61 ":blink", | 59 ":blink", |
| 62 "//base/test:test_support", | 60 "//base/test:test_support", |
| 63 "//base/third_party/dynamic_annotations", | 61 "//base/third_party/dynamic_annotations", |
| 64 "//cc", | 62 "//cc", |
| 65 "//cc:test_support", | 63 "//cc:test_support", |
| 66 "//skia", | 64 "//skia", |
| 67 "//testing/gmock", | 65 "//testing/gmock", |
| 68 "//testing/gtest", | 66 "//testing/gtest", |
| 69 "//third_party/WebKit/public:blink", | 67 "//third_party/WebKit/public:blink", |
| 70 "//ui/gfx:test_support", | 68 "//ui/gfx:test_support", |
| 71 "//ui/gfx/geometry", | 69 "//ui/gfx/geometry", |
| 72 ] | 70 ] |
| 73 } | 71 } |
| OLD | NEW |