| 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 25 matching lines...) Expand all Loading... |
| 36 "gpu_command_buffer_stub.cc", | 36 "gpu_command_buffer_stub.cc", |
| 37 "gpu_command_buffer_stub.h", | 37 "gpu_command_buffer_stub.h", |
| 38 "gpu_config.h", | 38 "gpu_config.h", |
| 39 "gpu_memory_buffer_factory.cc", | 39 "gpu_memory_buffer_factory.cc", |
| 40 "gpu_memory_buffer_factory.h", | 40 "gpu_memory_buffer_factory.h", |
| 41 "gpu_memory_manager.cc", | 41 "gpu_memory_manager.cc", |
| 42 "gpu_memory_manager.h", | 42 "gpu_memory_manager.h", |
| 43 "gpu_memory_tracking.cc", | 43 "gpu_memory_tracking.cc", |
| 44 "gpu_memory_tracking.h", | 44 "gpu_memory_tracking.h", |
| 45 "gpu_watchdog.h", | 45 "gpu_watchdog.h", |
| 46 "gpu_watchdog_thread.cc", |
| 47 "gpu_watchdog_thread.h", |
| 46 "image_transport_surface.h", | 48 "image_transport_surface.h", |
| 47 "pass_through_image_transport_surface.cc", | 49 "pass_through_image_transport_surface.cc", |
| 48 "pass_through_image_transport_surface.h", | 50 "pass_through_image_transport_surface.h", |
| 49 ] | 51 ] |
| 50 configs += [ "//gpu:gpu_implementation" ] | 52 configs += [ "//gpu:gpu_implementation" ] |
| 51 public_deps = [ | 53 public_deps = [ |
| 52 "//base", | 54 "//base", |
| 53 "//ipc", | 55 "//ipc", |
| 54 "//ui/base", | 56 "//ui/base", |
| 55 "//ui/events:events_base", | 57 "//ui/events:events_base", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 deps += [ "//ui/android:ui_java" ] | 167 deps += [ "//ui/android:ui_java" ] |
| 166 } | 168 } |
| 167 if (is_mac) { | 169 if (is_mac) { |
| 168 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 170 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
| 169 } | 171 } |
| 170 if (use_ozone) { | 172 if (use_ozone) { |
| 171 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] | 173 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] |
| 172 deps += [ "//ui/ozone" ] | 174 deps += [ "//ui/ozone" ] |
| 173 } | 175 } |
| 174 } | 176 } |
| OLD | NEW |