| 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 if (is_mac) { | 9 if (is_mac) { |
| 10 import("//build/config/mac/mac_sdk.gni") | 10 import("//build/config/mac/mac_sdk.gni") |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 # because logging is disabled there. | 263 # because logging is disabled there. |
| 264 deps += [ "//ppapi/proxy:ipc_sources" ] | 264 deps += [ "//ppapi/proxy:ipc_sources" ] |
| 265 } | 265 } |
| 266 | 266 |
| 267 if (is_ios) { | 267 if (is_ios) { |
| 268 sources -= [ "user_agent.cc" ] | 268 sources -= [ "user_agent.cc" ] |
| 269 assert(false, "Need to add lots of conditions here") | 269 assert(false, "Need to add lots of conditions here") |
| 270 } | 270 } |
| 271 | 271 |
| 272 if (use_ozone) { | 272 if (use_ozone) { |
| 273 configs += [ "//ui/ozone:vgem_map" ] |
| 274 |
| 273 deps += [ | 275 deps += [ |
| 274 "//ui/ozone:ozone", | 276 "//ui/ozone:ozone", |
| 275 "//ui/ozone:ozone_base", | 277 "//ui/ozone:ozone_base", |
| 276 ] | 278 ] |
| 277 } else { | 279 } else { |
| 278 sources -= [ | 280 sources -= [ |
| 279 "cursors/webcursor_ozone.cc", | 281 "cursors/webcursor_ozone.cc", |
| 280 "font_list_ozone.cc", | 282 "font_list_ozone.cc", |
| 281 "gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc", | 283 "gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc", |
| 282 "gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h", | 284 "gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h", |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 | 515 |
| 514 import_dirs = [ "//mojo/services" ] | 516 import_dirs = [ "//mojo/services" ] |
| 515 | 517 |
| 516 deps = [ | 518 deps = [ |
| 517 "//content/public/common:mojo_bindings", | 519 "//content/public/common:mojo_bindings", |
| 518 "//mojo/application/public/interfaces", | 520 "//mojo/application/public/interfaces", |
| 519 "//skia/public/interfaces", | 521 "//skia/public/interfaces", |
| 520 "//ui/mojo/geometry:interfaces", | 522 "//ui/mojo/geometry:interfaces", |
| 521 ] | 523 ] |
| 522 } | 524 } |
| OLD | NEW |