| 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 | 6 |
| 7 group("common") { | 7 group("common") { |
| 8 if (is_component_build) { | 8 if (is_component_build) { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 "//gpu", | 10 "//gpu", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "//gpu:gpu_implementation", | 79 "//gpu:gpu_implementation", |
| 80 "//third_party/khronos:khronos_headers", | 80 "//third_party/khronos:khronos_headers", |
| 81 ] | 81 ] |
| 82 | 82 |
| 83 deps = [ | 83 deps = [ |
| 84 ":command_buffer_traits_sources", | 84 ":command_buffer_traits_sources", |
| 85 "//base", | 85 "//base", |
| 86 "//gpu/command_buffer/common:common_sources", | 86 "//gpu/command_buffer/common:common_sources", |
| 87 "//gpu/config:config_sources", | 87 "//gpu/config:config_sources", |
| 88 "//ipc", | 88 "//ipc", |
| 89 "//ui/events/ipc", |
| 89 "//ui/gfx/ipc", | 90 "//ui/gfx/ipc", |
| 90 "//ui/gl", | 91 "//ui/gl", |
| 91 "//ui/latency_info/ipc", | |
| 92 "//url/ipc:url_ipc", | 92 "//url/ipc:url_ipc", |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 if (is_android) { | 95 if (is_android) { |
| 96 sources += [ | 96 sources += [ |
| 97 "android/surface_texture_manager.cc", | 97 "android/surface_texture_manager.cc", |
| 98 "android/surface_texture_manager.h", | 98 "android/surface_texture_manager.h", |
| 99 "android/surface_texture_peer.cc", | 99 "android/surface_texture_peer.cc", |
| 100 "android/surface_texture_peer.h", | 100 "android/surface_texture_peer.h", |
| 101 ] | 101 ] |
| 102 } | 102 } |
| 103 | 103 |
| 104 if (use_ozone) { | 104 if (use_ozone) { |
| 105 deps += [ "//ui/ozone" ] | 105 deps += [ "//ui/ozone" ] |
| 106 } | 106 } |
| 107 } | 107 } |
| OLD | NEW |