| 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("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 if (is_mac) { | 10 if (is_mac) { |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 # because logging is disabled there. | 273 # because logging is disabled there. |
| 274 deps += [ "//ppapi/proxy:ipc_sources" ] | 274 deps += [ "//ppapi/proxy:ipc_sources" ] |
| 275 } | 275 } |
| 276 | 276 |
| 277 if (is_ios) { | 277 if (is_ios) { |
| 278 sources -= [ "user_agent.cc" ] | 278 sources -= [ "user_agent.cc" ] |
| 279 assert(false, "Need to add lots of conditions here") | 279 assert(false, "Need to add lots of conditions here") |
| 280 } | 280 } |
| 281 | 281 |
| 282 if (use_ozone) { | 282 if (use_ozone) { |
| 283 configs += [ "//ui/ozone:vgem_map" ] | |
| 284 | |
| 285 deps += [ "//ui/ozone" ] | 283 deps += [ "//ui/ozone" ] |
| 286 } else { | 284 } else { |
| 287 sources -= [ | 285 sources -= [ |
| 288 "cursors/webcursor_ozone.cc", | 286 "cursors/webcursor_ozone.cc", |
| 289 "font_list_ozone.cc", | 287 "font_list_ozone.cc", |
| 290 "gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc", | 288 "gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc", |
| 291 "gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h", | 289 "gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h", |
| 292 "gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc", | 290 "gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc", |
| 293 "gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h", | 291 "gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h", |
| 294 ] | 292 ] |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 public_deps = [ | 546 public_deps = [ |
| 549 "//components/leveldb/public/interfaces", | 547 "//components/leveldb/public/interfaces", |
| 550 "//components/mus/public/interfaces", | 548 "//components/mus/public/interfaces", |
| 551 "//content/public/common:mojo_bindings", | 549 "//content/public/common:mojo_bindings", |
| 552 "//mojo/shell/public/interfaces", | 550 "//mojo/shell/public/interfaces", |
| 553 "//skia/public/interfaces", | 551 "//skia/public/interfaces", |
| 554 "//third_party/WebKit/public:mojo_bindings", | 552 "//third_party/WebKit/public:mojo_bindings", |
| 555 "//ui/mojo/geometry:interfaces", | 553 "//ui/mojo/geometry:interfaces", |
| 556 ] | 554 ] |
| 557 } | 555 } |
| OLD | NEW |