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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 source_set("display") { | 8 source_set("display") { |
9 sources = [ | 9 sources = [ |
| 10 "platform_screen.cc", |
10 "platform_screen.h", | 11 "platform_screen.h", |
11 "platform_screen_delegate.h", | 12 "platform_screen_delegate.h", |
12 ] | 13 ] |
13 | 14 |
14 deps = [ | 15 deps = [ |
15 "//base", | 16 "//base", |
16 "//ui/display", | 17 "//ui/display", |
17 "//ui/gfx", | 18 "//ui/gfx", |
18 ] | 19 ] |
19 | 20 |
(...skipping 28 matching lines...) Expand all Loading... |
48 "//base/test:test_support", | 49 "//base/test:test_support", |
49 "//testing/gmock", | 50 "//testing/gmock", |
50 "//testing/gtest", | 51 "//testing/gtest", |
51 "//ui/display", | 52 "//ui/display", |
52 "//ui/gfx", | 53 "//ui/gfx", |
53 "//ui/gfx:test_support", | 54 "//ui/gfx:test_support", |
54 "//ui/ozone", | 55 "//ui/ozone", |
55 ] | 56 ] |
56 } | 57 } |
57 } | 58 } |
OLD | NEW |