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