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("//ui/ozone/ozone.gni") | 5 import("//ui/ozone/ozone.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 # The list of platforms that will be built. | 8 # The list of platforms that will be built. |
9 ozone_platforms = [] | 9 ozone_platforms = [] |
10 | 10 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 "public/ozone_platform.h", | 113 "public/ozone_platform.h", |
114 "public/ozone_switches.cc", | 114 "public/ozone_switches.cc", |
115 "public/ozone_switches.h", | 115 "public/ozone_switches.h", |
116 constructor_list_cc_file, | 116 constructor_list_cc_file, |
117 platform_list_cc_file, | 117 platform_list_cc_file, |
118 platform_list_h_file, | 118 platform_list_h_file, |
119 ] | 119 ] |
120 | 120 |
121 defines = [ "OZONE_IMPLEMENTATION" ] | 121 defines = [ "OZONE_IMPLEMENTATION" ] |
122 | 122 |
| 123 public_deps = [ |
| 124 ":ozone_base", |
| 125 ] |
| 126 |
123 deps = | 127 deps = |
124 [ | 128 [ |
125 ":generate_constructor_list", | 129 ":generate_constructor_list", |
126 ":generate_ozone_platform_list", | 130 ":generate_ozone_platform_list", |
127 ":ozone_base", | |
128 "//base", | 131 "//base", |
129 "//ipc", | 132 "//ipc", |
130 "//skia", | 133 "//skia", |
131 "//ui/display/types", | 134 "//ui/display/types", |
132 "//ui/display/util", | 135 "//ui/display/util", |
133 "//ui/events", | 136 "//ui/events", |
134 "//ui/events/devices", | 137 "//ui/events/devices", |
135 "//ui/events/ozone:events_ozone", | 138 "//ui/events/ozone:events_ozone", |
136 "//ui/gfx", | 139 "//ui/gfx", |
137 "//ui/gfx/geometry", | 140 "//ui/gfx/geometry", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 sources = [ | 193 sources = [ |
191 "run_all_unittests.cc", | 194 "run_all_unittests.cc", |
192 ] | 195 ] |
193 | 196 |
194 deps = [ | 197 deps = [ |
195 "//base/test:test_support", | 198 "//base/test:test_support", |
196 "//testing/gtest", | 199 "//testing/gtest", |
197 "//ui/gfx/geometry", | 200 "//ui/gfx/geometry", |
198 ] + ozone_platform_test_deps | 201 ] + ozone_platform_test_deps |
199 } | 202 } |
OLD | NEW |