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

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

Issue 1924613002: Move ui/gfx/geometry ParamTraits to ui/gfx/ipc/geometry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed ozone Created 4 years, 7 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 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 6
7 group("common") { 7 group("common") {
8 if (is_component_build) { 8 if (is_component_build) {
9 public_deps = [ 9 public_deps = [
10 "//gpu", 10 "//gpu",
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ":command_buffer_traits_sources", 87 ":command_buffer_traits_sources",
88 ] 88 ]
89 89
90 deps = [ 90 deps = [
91 "//base", 91 "//base",
92 "//gpu/command_buffer/common:common_sources", 92 "//gpu/command_buffer/common:common_sources",
93 "//gpu/config:config_sources", 93 "//gpu/config:config_sources",
94 "//ipc", 94 "//ipc",
95 "//ui/events/ipc", 95 "//ui/events/ipc",
96 "//ui/gfx/ipc", 96 "//ui/gfx/ipc",
97 "//ui/gfx/ipc/geometry",
97 "//ui/gl", 98 "//ui/gl",
98 "//url/ipc:url_ipc", 99 "//url/ipc:url_ipc",
99 ] 100 ]
100 101
101 if (is_android) { 102 if (is_android) {
102 sources += [ 103 sources += [
103 "android/surface_texture_manager.cc", 104 "android/surface_texture_manager.cc",
104 "android/surface_texture_manager.h", 105 "android/surface_texture_manager.h",
105 "android/surface_texture_peer.cc", 106 "android/surface_texture_peer.cc",
106 "android/surface_texture_peer.h", 107 "android/surface_texture_peer.h",
107 ] 108 ]
108 } 109 }
109 110
110 if (use_ozone) { 111 if (use_ozone) {
111 deps += [ "//ui/ozone" ] 112 deps += [ "//ui/ozone" ]
112 } 113 }
113 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698