| 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_watchdog_thread.cc", | 50 "gpu_watchdog_thread.cc", |
| 48 "gpu_watchdog_thread.h", | 51 "gpu_watchdog_thread.h", |
| 49 "image_transport_surface.h", | 52 "image_transport_surface.h", |
| 50 "image_transport_surface_delegate.cc", | 53 "image_transport_surface_delegate.cc", |
| 51 "image_transport_surface_delegate.h", | 54 "image_transport_surface_delegate.h", |
| 52 "pass_through_image_transport_surface.cc", | 55 "pass_through_image_transport_surface.cc", |
| 53 "pass_through_image_transport_surface.h", | 56 "pass_through_image_transport_surface.h", |
| 54 "switches.cc", | 57 "switches.cc", |
| 55 "switches.h", | 58 "switches.h", |
| 56 ] | 59 ] |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 ] | 136 ] |
| 134 } | 137 } |
| 135 | 138 |
| 136 test("gpu_ipc_service_unittests") { | 139 test("gpu_ipc_service_unittests") { |
| 137 configs += [ "//build/config:precompiled_headers" ] | 140 configs += [ "//build/config:precompiled_headers" ] |
| 138 sources = [ | 141 sources = [ |
| 139 "gpu_channel_manager_unittest.cc", | 142 "gpu_channel_manager_unittest.cc", |
| 140 "gpu_channel_test_common.cc", | 143 "gpu_channel_test_common.cc", |
| 141 "gpu_channel_test_common.h", | 144 "gpu_channel_test_common.h", |
| 142 "gpu_channel_unittest.cc", | 145 "gpu_channel_unittest.cc", |
| 146 "gpu_vsync_provider_unittest_win.cc", |
| 143 ] | 147 ] |
| 144 deps = [ | 148 deps = [ |
| 145 ":service", | 149 ":service", |
| 146 ":test_support", | 150 ":test_support", |
| 147 "//base", | 151 "//base", |
| 148 "//base/test:test_support", | 152 "//base/test:test_support", |
| 149 "//gpu/command_buffer/common", | 153 "//gpu/command_buffer/common", |
| 150 "//gpu/command_buffer/common:gles2_utils", | 154 "//gpu/command_buffer/common:gles2_utils", |
| 151 "//gpu/command_buffer/service", | 155 "//gpu/command_buffer/service", |
| 152 "//gpu/config", | 156 "//gpu/config", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 167 deps += [ "//ui/android:ui_java" ] | 171 deps += [ "//ui/android:ui_java" ] |
| 168 } | 172 } |
| 169 if (is_mac) { | 173 if (is_mac) { |
| 170 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 174 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
| 171 } | 175 } |
| 172 if (use_ozone) { | 176 if (use_ozone) { |
| 173 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] | 177 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] |
| 174 deps += [ "//ui/ozone" ] | 178 deps += [ "//ui/ozone" ] |
| 175 } | 179 } |
| 176 } | 180 } |
| OLD | NEW |