| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 if (is_mac) { | 7 if (is_mac) { |
| 8 import("//build/config/mac/mac_sdk.gni") | 8 import("//build/config/mac/mac_sdk.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "gpu_memory_tracking.h", | 39 "gpu_memory_tracking.h", |
| 40 "gpu_watchdog.h", | 40 "gpu_watchdog.h", |
| 41 "image_transport_surface.h", | 41 "image_transport_surface.h", |
| 42 "pass_through_image_transport_surface.cc", | 42 "pass_through_image_transport_surface.cc", |
| 43 "pass_through_image_transport_surface.h", | 43 "pass_through_image_transport_surface.h", |
| 44 ] | 44 ] |
| 45 configs += [ "//gpu:gpu_implementation" ] | 45 configs += [ "//gpu:gpu_implementation" ] |
| 46 public_deps = [ | 46 public_deps = [ |
| 47 "//base", | 47 "//base", |
| 48 "//ipc", | 48 "//ipc", |
| 49 "//ui/events:events_base", | |
| 50 "//ui/gfx", | 49 "//ui/gfx", |
| 51 "//ui/gfx/geometry", | 50 "//ui/gfx/geometry", |
| 52 "//ui/gl", | 51 "//ui/gl", |
| 52 "//ui/latency_info/ipc", |
| 53 "//url", | 53 "//url", |
| 54 ] | 54 ] |
| 55 deps = [ | 55 deps = [ |
| 56 "//gpu/command_buffer/common:common_sources", | 56 "//gpu/command_buffer/common:common_sources", |
| 57 "//gpu/command_buffer/service:service_sources", | 57 "//gpu/command_buffer/service:service_sources", |
| 58 "//gpu/config:config_sources", | 58 "//gpu/config:config_sources", |
| 59 "//gpu/ipc/common:ipc_common_sources", | 59 "//gpu/ipc/common:ipc_common_sources", |
| 60 ] | 60 ] |
| 61 libs = [] | 61 libs = [] |
| 62 if (is_win) { | 62 if (is_win) { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 sources += [ "gpu_memory_buffer_factory_surface_texture_unittest.cc" ] | 150 sources += [ "gpu_memory_buffer_factory_surface_texture_unittest.cc" ] |
| 151 } | 151 } |
| 152 if (is_mac) { | 152 if (is_mac) { |
| 153 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 153 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
| 154 } | 154 } |
| 155 if (use_ozone) { | 155 if (use_ozone) { |
| 156 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] | 156 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] |
| 157 deps += [ "//ui/ozone" ] | 157 deps += [ "//ui/ozone" ] |
| 158 } | 158 } |
| 159 } | 159 } |
| OLD | NEW |