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

Side by Side Diff: gpu/ipc/common/BUILD.gn

Issue 2178973004: DialogSurfaceManager implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DialogSurfaceManager.java => DialogSurfaceManagerImpl.java and stopped using activity for window to… Created 4 years, 1 month 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 group("common") { 8 group("common") {
9 if (is_component_build) { 9 if (is_component_build) {
10 public_deps = [ 10 public_deps = [
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "//ui/base", 99 "//ui/base",
100 "//ui/events/ipc", 100 "//ui/events/ipc",
101 "//ui/gfx/ipc", 101 "//ui/gfx/ipc",
102 "//ui/gfx/ipc/geometry", 102 "//ui/gfx/ipc/geometry",
103 "//ui/gl", 103 "//ui/gl",
104 "//url/ipc:url_ipc", 104 "//url/ipc:url_ipc",
105 ] 105 ]
106 106
107 if (is_android) { 107 if (is_android) {
108 sources += [ 108 sources += [
109 "android/dialog_surface_lookup.cc",
110 "android/dialog_surface_lookup.h",
109 "android/scoped_surface_request_conduit.cc", 111 "android/scoped_surface_request_conduit.cc",
110 "android/scoped_surface_request_conduit.h", 112 "android/scoped_surface_request_conduit.h",
111 "android/surface_texture_manager.cc", 113 "android/surface_texture_manager.cc",
112 "android/surface_texture_manager.h", 114 "android/surface_texture_manager.h",
113 "android/surface_texture_peer.cc", 115 "android/surface_texture_peer.cc",
114 "android/surface_texture_peer.h", 116 "android/surface_texture_peer.h",
115 ] 117 ]
116 } 118 }
117 119
118 if (use_ozone) { 120 if (use_ozone) {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 deps = [ 186 deps = [
185 "//gpu/ipc/common", 187 "//gpu/ipc/common",
186 "//ui/gl", 188 "//ui/gl",
187 ] 189 ]
188 190
189 if (is_android) { 191 if (is_android) {
190 libs = [ "android" ] 192 libs = [ "android" ]
191 } 193 }
192 } 194 }
193 } 195 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698