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.cc", |
11 "platform_screen.h", | 11 "platform_screen.h", |
12 "platform_screen_delegate.h", | 12 "platform_screen_delegate.h", |
| 13 "viewport_metrics.cc", |
| 14 "viewport_metrics.h", |
13 ] | 15 ] |
14 | 16 |
15 deps = [ | 17 deps = [ |
16 "//base", | 18 "//base", |
17 "//services/service_manager/public/cpp", | 19 "//services/service_manager/public/cpp", |
18 "//ui/display", | 20 "//ui/display", |
19 "//ui/gfx", | 21 "//ui/gfx", |
20 ] | 22 ] |
21 | 23 |
22 if (use_ozone && is_chromeos) { | 24 if (use_ozone && is_chromeos) { |
(...skipping 28 matching lines...) Expand all Loading... |
51 "//base/test:test_support", | 53 "//base/test:test_support", |
52 "//testing/gmock", | 54 "//testing/gmock", |
53 "//testing/gtest", | 55 "//testing/gtest", |
54 "//ui/display", | 56 "//ui/display", |
55 "//ui/gfx", | 57 "//ui/gfx", |
56 "//ui/gfx:test_support", | 58 "//ui/gfx:test_support", |
57 "//ui/ozone", | 59 "//ui/ozone", |
58 ] | 60 ] |
59 } | 61 } |
60 } | 62 } |
OLD | NEW |