| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 public_deps = [ | 86 public_deps = [ |
| 87 ":command_buffer_traits_sources", | 87 ":command_buffer_traits_sources", |
| 88 ] | 88 ] |
| 89 | 89 |
| 90 deps = [ | 90 deps = [ |
| 91 "//base", | 91 "//base", |
| 92 "//gpu/command_buffer/common:common_sources", | 92 "//gpu/command_buffer/common:common_sources", |
| 93 "//gpu/config:config_sources", | 93 "//gpu/config:config_sources", |
| 94 "//ipc", | 94 "//ipc", |
| 95 "//ui/events/ipc", |
| 95 "//ui/gfx/ipc", | 96 "//ui/gfx/ipc", |
| 96 "//ui/gl", | 97 "//ui/gl", |
| 97 "//ui/latency_info/ipc", | |
| 98 "//url/ipc:url_ipc", | 98 "//url/ipc:url_ipc", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 if (is_android) { | 101 if (is_android) { |
| 102 sources += [ | 102 sources += [ |
| 103 "android/surface_texture_manager.cc", | 103 "android/surface_texture_manager.cc", |
| 104 "android/surface_texture_manager.h", | 104 "android/surface_texture_manager.h", |
| 105 "android/surface_texture_peer.cc", | 105 "android/surface_texture_peer.cc", |
| 106 "android/surface_texture_peer.h", | 106 "android/surface_texture_peer.h", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| 109 | 109 |
| 110 if (use_ozone) { | 110 if (use_ozone) { |
| 111 deps += [ "//ui/ozone" ] | 111 deps += [ "//ui/ozone" ] |
| 112 } | 112 } |
| 113 } | 113 } |
| OLD | NEW |