| 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 26 matching lines...) Expand all Loading... |
| 37 "gpu_command_buffer_stub.h", | 37 "gpu_command_buffer_stub.h", |
| 38 "gpu_config.h", | 38 "gpu_config.h", |
| 39 "gpu_init.cc", | 39 "gpu_init.cc", |
| 40 "gpu_init.h", | 40 "gpu_init.h", |
| 41 "gpu_memory_buffer_factory.cc", | 41 "gpu_memory_buffer_factory.cc", |
| 42 "gpu_memory_buffer_factory.h", | 42 "gpu_memory_buffer_factory.h", |
| 43 "gpu_memory_manager.cc", | 43 "gpu_memory_manager.cc", |
| 44 "gpu_memory_manager.h", | 44 "gpu_memory_manager.h", |
| 45 "gpu_memory_tracking.cc", | 45 "gpu_memory_tracking.cc", |
| 46 "gpu_memory_tracking.h", | 46 "gpu_memory_tracking.h", |
| 47 "gpu_vsync_provider.h", | |
| 48 "gpu_vsync_provider_posix.cc", | |
| 49 "gpu_vsync_provider_win.cc", | 47 "gpu_vsync_provider_win.cc", |
| 48 "gpu_vsync_provider_win.h", |
| 50 "gpu_watchdog_thread.cc", | 49 "gpu_watchdog_thread.cc", |
| 51 "gpu_watchdog_thread.h", | 50 "gpu_watchdog_thread.h", |
| 52 "image_transport_surface.h", | 51 "image_transport_surface.h", |
| 53 "image_transport_surface_delegate.cc", | 52 "image_transport_surface_delegate.cc", |
| 54 "image_transport_surface_delegate.h", | 53 "image_transport_surface_delegate.h", |
| 55 "pass_through_image_transport_surface.cc", | 54 "pass_through_image_transport_surface.cc", |
| 56 "pass_through_image_transport_surface.h", | 55 "pass_through_image_transport_surface.h", |
| 57 "switches.cc", | 56 "switches.cc", |
| 58 "switches.h", | 57 "switches.h", |
| 59 ] | 58 ] |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 deps += [ "//ui/android:ui_java" ] | 174 deps += [ "//ui/android:ui_java" ] |
| 176 } | 175 } |
| 177 if (is_mac) { | 176 if (is_mac) { |
| 178 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 177 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
| 179 } | 178 } |
| 180 if (use_ozone) { | 179 if (use_ozone) { |
| 181 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] | 180 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] |
| 182 deps += [ "//ui/ozone" ] | 181 deps += [ "//ui/ozone" ] |
| 183 } | 182 } |
| 184 } | 183 } |
| OLD | NEW |