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

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

Issue 412053002: Scrub ozone files from linux GN build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove accidental gpyi change Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « content/browser/BUILD.gn ('k') | no next file » | 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 source_set("common") { 10 source_set("common") {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 117
118 if (is_ios) { 118 if (is_ios) {
119 sources -= [ "user_agent.cc" ] 119 sources -= [ "user_agent.cc" ]
120 assert(false, "Need to add lots of conditions here") 120 assert(false, "Need to add lots of conditions here")
121 } 121 }
122 122
123 if (!use_ozone) { 123 if (!use_ozone) {
124 sources -= [ 124 sources -= [
125 "cursors/webcursor_ozone.cc", 125 "cursors/webcursor_ozone.cc",
126 "font_list_ozone.cc", 126 "font_list_ozone.cc",
127 "gpu/gpu_memory_buffer_factory_ozone.cc",
127 ] 128 ]
128 } 129 }
129 130
130 if (!use_aura) { 131 if (!use_aura) {
131 sources -= [ "cursors/webcursor_aura.cc" ] 132 sources -= [ "cursors/webcursor_aura.cc" ]
132 } 133 }
133 134
134 if (!use_aura || !use_x11) { 135 if (!use_aura || !use_x11) {
135 sources -= [ "cursors/webcursor_aurax11.cc" ] 136 sources -= [ "cursors/webcursor_aurax11.cc" ]
136 } 137 }
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 272
272 mojom("mojo_bindings") { 273 mojom("mojo_bindings") {
273 sources = [ 274 sources = [
274 "render_frame_setup.mojom", 275 "render_frame_setup.mojom",
275 ] 276 ]
276 277
277 deps = [ 278 deps = [
278 "//mojo/public/interfaces/service_provider:service_provider", 279 "//mojo/public/interfaces/service_provider:service_provider",
279 ] 280 ]
280 } 281 }
OLDNEW
« no previous file with comments | « content/browser/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698