| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 if (is_mac || is_android) { | 112 if (is_mac || is_android) { |
| 113 sources += [ | 113 sources += [ |
| 114 "gpu_surface_lookup.cc", | 114 "gpu_surface_lookup.cc", |
| 115 "gpu_surface_lookup.h", | 115 "gpu_surface_lookup.h", |
| 116 "gpu_surface_tracker.cc", | 116 "gpu_surface_tracker.cc", |
| 117 "gpu_surface_tracker.h", | 117 "gpu_surface_tracker.h", |
| 118 ] | 118 ] |
| 119 } | 119 } |
| 120 | 120 |
| 121 if (use_ozone) { | 121 if (use_ozone) { |
| 122 deps += [ "//ui/ozone" ] | 122 deps += [ "//ui/ozone:platform" ] |
| 123 } | 123 } |
| 124 } | 124 } |
| 125 | 125 |
| 126 # Depend on this to use surface_handle.h without pulling in all of gpu ipc. | 126 # Depend on this to use surface_handle.h without pulling in all of gpu ipc. |
| 127 source_set("surface_handle_type") { | 127 source_set("surface_handle_type") { |
| 128 public = [ | 128 public = [ |
| 129 "surface_handle.h", | 129 "surface_handle.h", |
| 130 ] | 130 ] |
| 131 | 131 |
| 132 public_deps = [ | 132 public_deps = [ |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "surface_handle_struct_traits.h", | 170 "surface_handle_struct_traits.h", |
| 171 "sync_token_struct_traits.h", | 171 "sync_token_struct_traits.h", |
| 172 ] | 172 ] |
| 173 deps = [ | 173 deps = [ |
| 174 ":interfaces_shared_cpp_sources", | 174 ":interfaces_shared_cpp_sources", |
| 175 ":surface_handle_type", | 175 ":surface_handle_type", |
| 176 "//gpu/command_buffer/common", | 176 "//gpu/command_buffer/common", |
| 177 "//mojo/public/cpp/bindings:bindings", | 177 "//mojo/public/cpp/bindings:bindings", |
| 178 ] | 178 ] |
| 179 } | 179 } |
| OLD | NEW |