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") | 5 import("//testing/test.gni") |
6 | 6 |
7 source_set("run_all_unittests") { | 7 source_set("run_all_unittests") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 sources = [ | 10 sources = [ |
11 "run_all_unittests.cc", | 11 "run_all_unittests.cc", |
12 ] | 12 ] |
13 | 13 |
14 deps = [ | 14 deps = [ |
15 "//base/test:test_support", | 15 "//base/test:test_support", |
16 "//blimp/client/public:public_headers", | |
17 "//mojo/edk/system", | 16 "//mojo/edk/system", |
18 "//ui/gfx:gfx", | 17 "//ui/gfx:gfx", |
19 ] | 18 ] |
20 | 19 |
21 if (is_android) { | 20 if (is_android) { |
22 deps += [ "//ui/android" ] | 21 deps += [ "//ui/android" ] |
23 } | 22 } |
24 } | 23 } |
25 | 24 |
26 source_set("support") { | 25 source_set("support") { |
27 testonly = true | 26 testonly = true |
28 | 27 |
29 sources = [ | 28 sources = [ |
30 "support/compositor/picture_cache_test_support.cc", | 29 "support/compositor/picture_cache_test_support.cc", |
31 "support/compositor/picture_cache_test_support.h", | 30 "support/compositor/picture_cache_test_support.h", |
32 ] | 31 ] |
33 | 32 |
34 deps = [ | 33 deps = [ |
35 "//ui/gfx", | 34 "//ui/gfx", |
36 "//ui/gfx/geometry", | 35 "//ui/gfx/geometry", |
37 ] | 36 ] |
38 | 37 |
39 public_deps = [ | 38 public_deps = [ |
40 "//blimp/common", | 39 "//blimp/common", |
41 "//cc", | 40 "//cc", |
42 "//skia", | 41 "//skia", |
43 "//testing/gmock", | 42 "//testing/gmock", |
44 ] | 43 ] |
45 } | 44 } |
OLD | NEW |