| 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 ":surface_handle_type", | 88 ":surface_handle_type", |
| 89 "//gpu/command_buffer/common:gles2_utils", | 89 "//gpu/command_buffer/common:gles2_utils", |
| 90 "//ipc", | 90 "//ipc", |
| 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 "//ui/base", | 97 "//ui/base", |
| 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/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/scoped_surface_request_conduit.cc", | 107 "android/scoped_surface_request_conduit.cc", |
| 108 "android/scoped_surface_request_conduit.h", | 108 "android/scoped_surface_request_conduit.h", |
| 109 ] | 109 ] |
| 110 } | 110 } |
| 111 | 111 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 "sync_token_struct_traits.h", | 174 "sync_token_struct_traits.h", |
| 175 ] | 175 ] |
| 176 deps = [ | 176 deps = [ |
| 177 ":interfaces_shared_cpp_sources", | 177 ":interfaces_shared_cpp_sources", |
| 178 ":surface_handle_type", | 178 ":surface_handle_type", |
| 179 "//gpu/command_buffer/common", | 179 "//gpu/command_buffer/common", |
| 180 "//gpu/ipc/common", | 180 "//gpu/ipc/common", |
| 181 "//mojo/public/cpp/bindings:bindings", | 181 "//mojo/public/cpp/bindings:bindings", |
| 182 ] | 182 ] |
| 183 } | 183 } |
| OLD | NEW |