| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 group("common") { | 8 group("common") { |
| 9 if (is_component_build) { | 9 if (is_component_build) { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 88 |
| 89 public_deps = [ | 89 public_deps = [ |
| 90 ":command_buffer_traits_sources", | 90 ":command_buffer_traits_sources", |
| 91 ] | 91 ] |
| 92 | 92 |
| 93 deps = [ | 93 deps = [ |
| 94 "//base", | 94 "//base", |
| 95 "//gpu/command_buffer/common:common_sources", | 95 "//gpu/command_buffer/common:common_sources", |
| 96 "//gpu/config:config_sources", | 96 "//gpu/config:config_sources", |
| 97 "//ipc", | 97 "//ipc", |
| 98 "//ui/events/ipc", | |
| 99 "//ui/gfx/ipc", | 98 "//ui/gfx/ipc", |
| 100 "//ui/gfx/ipc/geometry", | 99 "//ui/gfx/ipc/geometry", |
| 101 "//ui/gl", | 100 "//ui/gl", |
| 101 "//ui/latency_info/ipc", |
| 102 "//url/ipc:url_ipc", | 102 "//url/ipc:url_ipc", |
| 103 ] | 103 ] |
| 104 | 104 |
| 105 if (is_android) { | 105 if (is_android) { |
| 106 sources += [ | 106 sources += [ |
| 107 "android/surface_texture_manager.cc", | 107 "android/surface_texture_manager.cc", |
| 108 "android/surface_texture_manager.h", | 108 "android/surface_texture_manager.h", |
| 109 "android/surface_texture_peer.cc", | 109 "android/surface_texture_peer.cc", |
| 110 "android/surface_texture_peer.h", | 110 "android/surface_texture_peer.h", |
| 111 ] | 111 ] |
| 112 } | 112 } |
| 113 | 113 |
| 114 if (use_ozone) { | 114 if (use_ozone) { |
| 115 deps += [ "//ui/ozone" ] | 115 deps += [ "//ui/ozone" ] |
| 116 } | 116 } |
| 117 } | 117 } |
| 118 | 118 |
| 119 mojom("interfaces") { | 119 mojom("interfaces") { |
| 120 sources = [ | 120 sources = [ |
| 121 "capabilities.mojom", | 121 "capabilities.mojom", |
| 122 "command_buffer.mojom", | 122 "command_buffer.mojom", |
| 123 "mailbox.mojom", | 123 "mailbox.mojom", |
| 124 "mailbox_holder.mojom", | 124 "mailbox_holder.mojom", |
| 125 "sync_token.mojom", | 125 "sync_token.mojom", |
| 126 ] | 126 ] |
| 127 } | 127 } |
| OLD | NEW |