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 group("common") { | 5 group("common") { |
6 if (is_component_build) { | 6 if (is_component_build) { |
7 public_deps = [ | 7 public_deps = [ |
8 "//gpu", | 8 "//gpu", |
9 ] | 9 ] |
10 } else { | 10 } else { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 "//base", | 45 "//base", |
46 "//gpu/command_buffer/common:common_sources", | 46 "//gpu/command_buffer/common:common_sources", |
47 "//ipc", | 47 "//ipc", |
48 ] | 48 ] |
49 } | 49 } |
50 | 50 |
51 source_set("ipc_common_sources") { | 51 source_set("ipc_common_sources") { |
52 visibility = [ "//gpu/*" ] | 52 visibility = [ "//gpu/*" ] |
53 | 53 |
54 sources = [ | 54 sources = [ |
| 55 "gpu_memory_uma_stats.h", |
55 "gpu_message_generator.cc", | 56 "gpu_message_generator.cc", |
56 "gpu_message_generator.h", | 57 "gpu_message_generator.h", |
57 "gpu_messages.h", | 58 "gpu_messages.h", |
58 "gpu_param_traits.cc", | 59 "gpu_param_traits.cc", |
59 "gpu_param_traits.h", | 60 "gpu_param_traits.h", |
60 "gpu_param_traits_macros.h", | 61 "gpu_param_traits_macros.h", |
61 "gpu_stream_constants.h", | 62 "gpu_stream_constants.h", |
| 63 "gpu_surface_lookup.cc", |
| 64 "gpu_surface_lookup.h", |
62 "memory_stats.cc", | 65 "memory_stats.cc", |
63 "memory_stats.h", | 66 "memory_stats.h", |
64 ] | 67 ] |
65 | 68 |
66 configs += [ | 69 configs += [ |
67 "//gpu:gpu_implementation", | 70 "//gpu:gpu_implementation", |
68 "//third_party/khronos:khronos_headers", | 71 "//third_party/khronos:khronos_headers", |
69 ] | 72 ] |
70 | 73 |
71 deps = [ | 74 deps = [ |
(...skipping 10 matching lines...) Expand all Loading... |
82 | 85 |
83 if (is_android) { | 86 if (is_android) { |
84 sources += [ | 87 sources += [ |
85 "android/surface_texture_manager.cc", | 88 "android/surface_texture_manager.cc", |
86 "android/surface_texture_manager.h", | 89 "android/surface_texture_manager.h", |
87 "android/surface_texture_peer.cc", | 90 "android/surface_texture_peer.cc", |
88 "android/surface_texture_peer.h", | 91 "android/surface_texture_peer.h", |
89 ] | 92 ] |
90 } | 93 } |
91 } | 94 } |
OLD | NEW |