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

Unified Diff: ui/ozone/BUILD.gn

Issue 1309273005: native_viewport support for ozone (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: addressing review feedback Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: ui/ozone/BUILD.gn
diff --git a/ui/ozone/BUILD.gn b/ui/ozone/BUILD.gn
index 117988bc9067a33166020b5ca5004b262eb2a39b..b02a68fa1b81ac0505e0a2070411d9e3f4515482 100644
--- a/ui/ozone/BUILD.gn
+++ b/ui/ozone/BUILD.gn
@@ -88,6 +88,18 @@ component("ozone_base") {
]
}
+component("ozone_common_message_types") {
jamesr 2015/08/27 19:35:47 s/component/source_set/
cdotstout 2015/08/27 21:28:33 Done.
+ sources = [
+ "common/gpu/ozone_gpu_message_params.cc",
+ "common/gpu/ozone_gpu_message_params.h",
+ ]
+ deps = [
+ ":ozone_base",
+ "//ui/display/types",
+ "//ui/gfx/geometry",
+ ]
+}
+
component("ozone") {
sources = [
"common/display_mode_proxy.cc",
@@ -98,8 +110,6 @@ component("ozone") {
"common/display_util.h",
"common/egl_util.cc",
"common/egl_util.h",
- "common/gpu/ozone_gpu_message_params.cc",
- "common/gpu/ozone_gpu_message_params.h",
"common/native_display_delegate_ozone.cc",
"common/native_display_delegate_ozone.h",
"common/stub_overlay_manager.cc",
@@ -122,6 +132,7 @@ component("ozone") {
":generate_constructor_list",
":generate_ozone_platform_list",
":ozone_base",
+ ":ozone_common_message_types",
"//base",
"//skia",
"//ui/display/types",
@@ -130,16 +141,12 @@ component("ozone") {
"//ui/events/devices",
"//ui/events/ozone:events_ozone",
"//ui/gfx",
- "//ui/gfx/geometry",
# TODO(GYP) the GYP version has a way to add additional dependencies via
# build flags.
] + ozone_platform_deps
allow_circular_includes_from = [
- "platform/egltest",
-
- #"platform/drm",
"platform/drm:drm_common",
"platform/drm:gbm",
"//ui/events/ozone:events_ozone",

Powered by Google App Engine
This is Rietveld 408576698