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

Side by Side Diff: services/native_viewport/BUILD.gn

Issue 1168993002: Update the native_viewport interface to allow specification of the surface configuration, currently… (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Final cleanups Created 5 years, 6 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
« no previous file with comments | « services/gles2/gpu_impl.cc ('k') | services/native_viewport/native_viewport_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//mojo/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/config.gni") 9 import("//build/config/android/config.gni")
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 sources -= [ "platform_viewport_stub.cc" ] 76 sources -= [ "platform_viewport_stub.cc" ]
77 } 77 }
78 78
79 deps = [ 79 deps = [
80 "//base", 80 "//base",
81 "//gpu/command_buffer/service", 81 "//gpu/command_buffer/service",
82 "//mojo/application", 82 "//mojo/application",
83 "//mojo/common", 83 "//mojo/common",
84 "//mojo/converters/geometry", 84 "//mojo/converters/geometry",
85 "//mojo/converters/input_events", 85 "//mojo/converters/input_events",
86 "//mojo/converters/native_viewport",
86 "//mojo/environment:chromium", 87 "//mojo/environment:chromium",
87 "//services/gles2", 88 "//services/gles2",
88 "//mojo/services/geometry/public/interfaces", 89 "//mojo/services/geometry/public/interfaces",
89 "//mojo/services/native_viewport/public/interfaces", 90 "//mojo/services/native_viewport/public/interfaces",
90 "//ui/events", 91 "//ui/events",
91 "//ui/events/platform", 92 "//ui/events/platform",
92 "//ui/gfx", 93 "//ui/gfx",
93 "//ui/gfx/geometry", 94 "//ui/gfx/geometry",
94 "//ui/gl", 95 "//ui/gl",
95 "//ui/platform_window", 96 "//ui/platform_window",
96 ] 97 ]
97 98
98 if (is_android) { 99 if (is_android) {
99 deps += [ ":jni_headers" ] 100 deps += [ ":jni_headers" ]
100 } 101 }
101 102
102 if (use_x11) { 103 if (use_x11) {
103 deps += [ "//ui/platform_window/x11" ] 104 deps += [ "//ui/platform_window/x11" ]
104 } else { 105 } else {
105 sources -= [ "platform_viewport_x11.cc" ] 106 sources -= [ "platform_viewport_x11.cc" ]
106 } 107 }
107 108
108 if (is_win) { 109 if (is_win) {
109 deps += [ "//ui/platform_window/win" ] 110 deps += [ "//ui/platform_window/win" ]
110 } 111 }
111 } 112 }
OLDNEW
« no previous file with comments | « services/gles2/gpu_impl.cc ('k') | services/native_viewport/native_viewport_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698