| 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", |
| 62 "gpu_process_launch_causes.h", |
| 61 "gpu_stream_constants.h", | 63 "gpu_stream_constants.h", |
| 64 "gpu_surface_lookup.cc", |
| 65 "gpu_surface_lookup.h", |
| 62 "memory_stats.cc", | 66 "memory_stats.cc", |
| 63 "memory_stats.h", | 67 "memory_stats.h", |
| 64 ] | 68 ] |
| 65 | 69 |
| 66 configs += [ | 70 configs += [ |
| 67 "//gpu:gpu_implementation", | 71 "//gpu:gpu_implementation", |
| 68 "//third_party/khronos:khronos_headers", | 72 "//third_party/khronos:khronos_headers", |
| 69 ] | 73 ] |
| 70 | 74 |
| 71 deps = [ | 75 deps = [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 82 | 86 |
| 83 if (is_android) { | 87 if (is_android) { |
| 84 sources += [ | 88 sources += [ |
| 85 "android/surface_texture_manager.cc", | 89 "android/surface_texture_manager.cc", |
| 86 "android/surface_texture_manager.h", | 90 "android/surface_texture_manager.h", |
| 87 "android/surface_texture_peer.cc", | 91 "android/surface_texture_peer.cc", |
| 88 "android/surface_texture_peer.h", | 92 "android/surface_texture_peer.h", |
| 89 ] | 93 ] |
| 90 } | 94 } |
| 91 } | 95 } |
| OLD | NEW |