OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |