| 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 22 matching lines...) Expand all Loading... |
| 33 "gpu_channel_manager.cc", | 33 "gpu_channel_manager.cc", |
| 34 "gpu_channel_manager.h", | 34 "gpu_channel_manager.h", |
| 35 "gpu_channel_manager_delegate.h", | 35 "gpu_channel_manager_delegate.h", |
| 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_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_buffer_factory_win.cc", |
| 44 "gpu_memory_buffer_factory_win.h", |
| 43 "gpu_memory_manager.cc", | 45 "gpu_memory_manager.cc", |
| 44 "gpu_memory_manager.h", | 46 "gpu_memory_manager.h", |
| 45 "gpu_memory_tracking.cc", | 47 "gpu_memory_tracking.cc", |
| 46 "gpu_memory_tracking.h", | 48 "gpu_memory_tracking.h", |
| 47 "gpu_vsync_provider_win.cc", | 49 "gpu_vsync_provider_win.cc", |
| 48 "gpu_vsync_provider_win.h", | 50 "gpu_vsync_provider_win.h", |
| 49 "gpu_watchdog_thread.cc", | 51 "gpu_watchdog_thread.cc", |
| 50 "gpu_watchdog_thread.h", | 52 "gpu_watchdog_thread.h", |
| 51 "image_transport_surface.h", | 53 "image_transport_surface.h", |
| 52 "image_transport_surface_delegate.cc", | 54 "image_transport_surface_delegate.cc", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 if (is_mac) { | 184 if (is_mac) { |
| 183 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 185 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
| 184 } | 186 } |
| 185 if (is_linux) { | 187 if (is_linux) { |
| 186 sources += [ "gpu_memory_buffer_factory_native_pixmap_unittest.cc" ] | 188 sources += [ "gpu_memory_buffer_factory_native_pixmap_unittest.cc" ] |
| 187 } | 189 } |
| 188 if (use_ozone) { | 190 if (use_ozone) { |
| 189 deps += [ "//ui/ozone" ] | 191 deps += [ "//ui/ozone" ] |
| 190 } | 192 } |
| 191 } | 193 } |
| OLD | NEW |