Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(408)

Side by Side Diff: ui/ozone/BUILD.gn

Issue 1824993004: Separate gfx_ipc into skia-dependent and non-skia-dependent parts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address nits from tsepez@ Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "//base", 97 "//base",
98 "//ipc", 98 "//ipc",
99 "//skia", 99 "//skia",
100 "//ui/display/types", 100 "//ui/display/types",
101 "//ui/display/util", 101 "//ui/display/util",
102 "//ui/events", 102 "//ui/events",
103 "//ui/events:dom_keycode_converter", 103 "//ui/events:dom_keycode_converter",
104 "//ui/gfx", 104 "//ui/gfx",
105 "//ui/gfx/geometry", 105 "//ui/gfx/geometry",
106 "//ui/gfx/ipc", 106 "//ui/gfx/ipc",
107 "//ui/gfx/ipc/skia",
107 ] 108 ]
108 109
109 visibility += [ 110 visibility += [
110 # Everyone should depend on //ui/ozone instead except a handful of 111 # Everyone should depend on //ui/ozone instead except a handful of
111 # things that would otherwise create a cycle. 112 # things that would otherwise create a cycle.
112 "//ui/base", 113 "//ui/base",
113 "//ui/events/ozone/*", 114 "//ui/events/ozone/*",
114 "//ui/ozone/platform/*", 115 "//ui/ozone/platform/*",
115 "//ui/ozone/common/*", 116 "//ui/ozone/common/*",
116 ] 117 ]
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 "//ui/gfx/geometry", 233 "//ui/gfx/geometry",
233 ] 234 ]
234 235
235 # Add tests of platform internals. 236 # Add tests of platform internals.
236 deps += ozone_platform_test_deps 237 deps += ozone_platform_test_deps
237 238
238 # Platform tests link ozone statically. Make sure we're not getting a 239 # Platform tests link ozone statically. Make sure we're not getting a
239 # 2nd copy of any code via the component. 240 # 2nd copy of any code via the component.
240 assert_no_deps = [ "//ui/ozone" ] 241 assert_no_deps = [ "//ui/ozone" ]
241 } 242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698