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