| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 configs += [ | 81 configs += [ |
| 82 "//gpu:gpu_implementation", | 82 "//gpu:gpu_implementation", |
| 83 "//third_party/khronos:khronos_headers", | 83 "//third_party/khronos:khronos_headers", |
| 84 ] | 84 ] |
| 85 | 85 |
| 86 public_deps = [ | 86 public_deps = [ |
| 87 ":command_buffer_traits_sources", | 87 ":command_buffer_traits_sources", |
| 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 ] | 91 ] |
| 91 | 92 |
| 92 deps = [ | 93 deps = [ |
| 93 "//base", | 94 "//base", |
| 94 "//gpu/command_buffer/common:common_sources", | 95 "//gpu/command_buffer/common:common_sources", |
| 95 "//gpu/config:config_sources", | 96 "//gpu/config:config_sources", |
| 96 "//ipc", | |
| 97 "//ui/base", | 97 "//ui/base", |
| 98 "//ui/events/ipc", | 98 "//ui/events/ipc", |
| 99 "//ui/gfx/ipc", | 99 "//ui/gfx/ipc", |
| 100 "//ui/gfx/ipc/geometry", | 100 "//ui/gfx/ipc/geometry", |
| 101 "//ui/gl", | 101 "//ui/gl", |
| 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 += [ |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 "sync_token_struct_traits.h", | 173 "sync_token_struct_traits.h", |
| 174 ] | 174 ] |
| 175 deps = [ | 175 deps = [ |
| 176 ":interfaces_shared_cpp_sources", | 176 ":interfaces_shared_cpp_sources", |
| 177 ":surface_handle_type", | 177 ":surface_handle_type", |
| 178 "//gpu/command_buffer/common", | 178 "//gpu/command_buffer/common", |
| 179 "//gpu/ipc/common", | 179 "//gpu/ipc/common", |
| 180 "//mojo/public/cpp/bindings:bindings", | 180 "//mojo/public/cpp/bindings:bindings", |
| 181 ] | 181 ] |
| 182 } | 182 } |
| OLD | NEW |