| 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 9 | 9 |
| 10 if (is_chromeos && current_cpu != "arm") { | 10 if (is_chromeos && current_cpu != "arm") { |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 if (use_ozone) { | 265 if (use_ozone) { |
| 266 deps += [ | 266 deps += [ |
| 267 "//ui/ozone:ozone", | 267 "//ui/ozone:ozone", |
| 268 "//ui/ozone:ozone_base", | 268 "//ui/ozone:ozone_base", |
| 269 "//ui/ozone/gpu", | 269 "//ui/ozone/gpu", |
| 270 ] | 270 ] |
| 271 } else { | 271 } else { |
| 272 sources -= [ | 272 sources -= [ |
| 273 "cursors/webcursor_ozone.cc", | 273 "cursors/webcursor_ozone.cc", |
| 274 "font_list_ozone.cc", | 274 "font_list_ozone.cc", |
| 275 "gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc", | 275 "gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc", |
| 276 "gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h", | 276 "gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h", |
| 277 "gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc", | 277 "gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc", |
| 278 "gpu/gpu_memory_buffer_factory_ozone_native_buffer.h", | 278 "gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h", |
| 279 ] | 279 ] |
| 280 } | 280 } |
| 281 | 281 |
| 282 if (!use_aura) { | 282 if (!use_aura) { |
| 283 sources -= [ "cursors/webcursor_aura.cc" ] | 283 sources -= [ "cursors/webcursor_aura.cc" ] |
| 284 } | 284 } |
| 285 | 285 |
| 286 if (!use_aura || !use_x11) { | 286 if (!use_aura || !use_x11) { |
| 287 sources -= [ "cursors/webcursor_aurax11.cc" ] | 287 sources -= [ "cursors/webcursor_aurax11.cc" ] |
| 288 } | 288 } |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 | 505 |
| 506 import_dirs = [ "//mojo/services" ] | 506 import_dirs = [ "//mojo/services" ] |
| 507 | 507 |
| 508 deps = [ | 508 deps = [ |
| 509 "//content/public/common:mojo_bindings", | 509 "//content/public/common:mojo_bindings", |
| 510 "//mojo/application/public/interfaces", | 510 "//mojo/application/public/interfaces", |
| 511 "//skia/public/interfaces", | 511 "//skia/public/interfaces", |
| 512 "//ui/mojo/geometry:interfaces", | 512 "//ui/mojo/geometry:interfaces", |
| 513 ] | 513 ] |
| 514 } | 514 } |
| OLD | NEW |