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

Side by Side Diff: content/common/BUILD.gn

Issue 688493003: [Ozone] Fix multiple definition of GpuMemoryBufferFactory::Create() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | content/content_common.gypi » ('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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/common/common.gni") 7 import("//content/common/common.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 9
10 if (is_chromeos && use_x11 && cpu_arch != "arm") { 10 if (is_chromeos && use_x11 && cpu_arch != "arm") {
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 sources -= [ "user_agent.cc" ] 148 sources -= [ "user_agent.cc" ]
149 assert(false, "Need to add lots of conditions here") 149 assert(false, "Need to add lots of conditions here")
150 } 150 }
151 151
152 if (!use_ozone) { 152 if (!use_ozone) {
153 sources -= [ 153 sources -= [
154 "cursors/webcursor_ozone.cc", 154 "cursors/webcursor_ozone.cc",
155 "font_list_ozone.cc", 155 "font_list_ozone.cc",
156 "gpu/gpu_memory_buffer_factory_ozone.cc", 156 "gpu/gpu_memory_buffer_factory_ozone.cc",
157 ] 157 ]
158 } else {
159 sources -= [
160 "gpu/gpu_memory_buffer_factory_linux.cc",
161 ]
158 } 162 }
159 163
160 if (!use_aura) { 164 if (!use_aura) {
161 sources -= [ "cursors/webcursor_aura.cc" ] 165 sources -= [ "cursors/webcursor_aura.cc" ]
162 } 166 }
163 167
164 if (!use_aura || !use_x11) { 168 if (!use_aura || !use_x11) {
165 sources -= [ "cursors/webcursor_aurax11.cc" ] 169 sources -= [ "cursors/webcursor_aurax11.cc" ]
166 } 170 }
167 171
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 sources = [ 317 sources = [
314 "geolocation_service.mojom", 318 "geolocation_service.mojom",
315 "render_frame_setup.mojom", 319 "render_frame_setup.mojom",
316 ] 320 ]
317 321
318 deps = [ 322 deps = [
319 "//content/public/common:mojo_bindings", 323 "//content/public/common:mojo_bindings",
320 "//mojo/public/interfaces/application:application", 324 "//mojo/public/interfaces/application:application",
321 ] 325 ]
322 } 326 }
OLDNEW
« no previous file with comments | « no previous file | content/content_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698