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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//ui/ozone/ozone.gni") | 6 import("//ui/ozone/ozone.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 assert(use_ozone) | 9 assert(use_ozone) |
10 | 10 |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
142 "//ipc", | 142 "//ipc", |
143 "//skia", | 143 "//skia", |
144 "//ui/display/types", | 144 "//ui/display/types", |
145 "//ui/display/util", | 145 "//ui/display/util", |
146 "//ui/events", | 146 "//ui/events", |
147 "//ui/events/devices", | 147 "//ui/events/devices", |
148 "//ui/events/ozone:events_ozone", | 148 "//ui/events/ozone:events_ozone", |
149 "//ui/gfx", | 149 "//ui/gfx", |
150 "//ui/gfx/geometry", | 150 "//ui/gfx/geometry", |
151 "//ui/gfx/ipc", | 151 "//ui/gfx/ipc", |
152 "//ui/platform_window", | |
sadrul
2016/01/26 17:50:38
Is this relevant for this CL?
kylechar
2016/01/26 17:58:34
This is the reason for the other target/dep change
| |
152 | 153 |
153 # TODO(GYP) the GYP version has a way to add additional dependencies via | 154 # TODO(GYP) the GYP version has a way to add additional dependencies via |
154 # build flags. | 155 # build flags. |
155 ] + ozone_platform_deps | 156 ] + ozone_platform_deps |
156 } | 157 } |
157 | 158 |
158 # GYP version: ui/ozone/ozone.gyp:generate_ozone_platform_list | 159 # GYP version: ui/ozone/ozone.gyp:generate_ozone_platform_list |
159 action("generate_ozone_platform_list") { | 160 action("generate_ozone_platform_list") { |
160 script = "generate_ozone_platform_list.py" | 161 script = "generate_ozone_platform_list.py" |
161 outputs = [ | 162 outputs = [ |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
203 sources = [ | 204 sources = [ |
204 "run_all_unittests.cc", | 205 "run_all_unittests.cc", |
205 ] | 206 ] |
206 | 207 |
207 deps = [ | 208 deps = [ |
208 "//base/test:test_support", | 209 "//base/test:test_support", |
209 "//testing/gtest", | 210 "//testing/gtest", |
210 "//ui/gfx/geometry", | 211 "//ui/gfx/geometry", |
211 ] + ozone_platform_test_deps | 212 ] + ozone_platform_test_deps |
212 } | 213 } |
OLD | NEW |