| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "//ui/base", | 98 "//ui/base", |
| 99 "//ui/events/ipc", | 99 "//ui/events/ipc", |
| 100 "//ui/gfx/ipc", | 100 "//ui/gfx/ipc", |
| 101 "//ui/gfx/ipc/geometry", | 101 "//ui/gfx/ipc/geometry", |
| 102 "//ui/gl", | 102 "//ui/gl", |
| 103 "//url/ipc:url_ipc", | 103 "//url/ipc:url_ipc", |
| 104 ] | 104 ] |
| 105 | 105 |
| 106 if (is_android) { | 106 if (is_android) { |
| 107 sources += [ | 107 sources += [ |
| 108 "android/scoped_surface_request_conduit.cc", |
| 109 "android/scoped_surface_request_conduit.h", |
| 108 "android/surface_texture_manager.cc", | 110 "android/surface_texture_manager.cc", |
| 109 "android/surface_texture_manager.h", | 111 "android/surface_texture_manager.h", |
| 110 "android/surface_texture_peer.cc", | 112 "android/surface_texture_peer.cc", |
| 111 "android/surface_texture_peer.h", | 113 "android/surface_texture_peer.h", |
| 112 ] | 114 ] |
| 113 } | 115 } |
| 114 | 116 |
| 115 if (use_ozone) { | 117 if (use_ozone) { |
| 116 deps += [ "//ui/ozone" ] | 118 deps += [ "//ui/ozone" ] |
| 117 } | 119 } |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 "mailbox_holder_struct_traits.h", | 151 "mailbox_holder_struct_traits.h", |
| 150 "mailbox_struct_traits.h", | 152 "mailbox_struct_traits.h", |
| 151 "sync_token_struct_traits.h", | 153 "sync_token_struct_traits.h", |
| 152 ] | 154 ] |
| 153 deps = [ | 155 deps = [ |
| 154 ":interfaces_shared_cpp_sources", | 156 ":interfaces_shared_cpp_sources", |
| 155 "//gpu/command_buffer/common", | 157 "//gpu/command_buffer/common", |
| 156 "//mojo/public/cpp/bindings:bindings", | 158 "//mojo/public/cpp/bindings:bindings", |
| 157 ] | 159 ] |
| 158 } | 160 } |
| OLD | NEW |