OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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") |
| 6 |
| 7 source_set("run_all_unittests") { |
| 8 testonly = true |
| 9 |
| 10 sources = [ |
| 11 "run_all_unittests.cc", |
| 12 ] |
| 13 |
| 14 deps = [ |
| 15 "//base/test:test_support", |
| 16 "//mojo/edk/system", |
| 17 ] |
| 18 } |
| 19 |
5 source_set("support") { | 20 source_set("support") { |
6 testonly = true | 21 testonly = true |
7 | 22 |
8 sources = [ | 23 sources = [ |
9 "support/compositor/picture_cache_test_support.cc", | 24 "support/compositor/picture_cache_test_support.cc", |
10 "support/compositor/picture_cache_test_support.h", | 25 "support/compositor/picture_cache_test_support.h", |
11 ] | 26 ] |
12 | 27 |
13 deps = [ | 28 deps = [ |
14 "//blimp/common", | 29 "//blimp/common", |
15 "//cc", | 30 "//cc", |
16 "//skia", | 31 "//skia", |
17 "//testing/gmock", | 32 "//testing/gmock", |
18 "//ui/gfx", | 33 "//ui/gfx", |
19 "//ui/gfx/geometry", | 34 "//ui/gfx/geometry", |
20 ] | 35 ] |
21 } | 36 } |
OLD | NEW |