| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 80   if (is_win) { | 80   if (is_win) { | 
| 81     sources += [ | 81     sources += [ | 
| 82       "child_window_surface_win.cc", | 82       "child_window_surface_win.cc", | 
| 83       "child_window_surface_win.h", | 83       "child_window_surface_win.h", | 
| 84       "child_window_win.cc", | 84       "child_window_win.cc", | 
| 85       "child_window_win.h", | 85       "child_window_win.h", | 
| 86       "direct_composition_child_surface_win.cc", | 86       "direct_composition_child_surface_win.cc", | 
| 87       "direct_composition_child_surface_win.h", | 87       "direct_composition_child_surface_win.h", | 
| 88       "direct_composition_surface_win.cc", | 88       "direct_composition_surface_win.cc", | 
| 89       "direct_composition_surface_win.h", | 89       "direct_composition_surface_win.h", | 
|  | 90       "gl_image_direct_composition.cc", | 
|  | 91       "gl_image_direct_composition.h", | 
|  | 92       "gpu_memory_buffer_factory_win.cc", | 
|  | 93       "gpu_memory_buffer_factory_win.h", | 
| 90       "image_transport_surface_win.cc", | 94       "image_transport_surface_win.cc", | 
| 91     ] | 95     ] | 
| 92     libs += [ "dwmapi.lib" ] | 96     libs += [ "dwmapi.lib" ] | 
| 93   } | 97   } | 
| 94   if (is_mac) { | 98   if (is_mac) { | 
| 95     sources += [ | 99     sources += [ | 
| 96       "gpu_memory_buffer_factory_io_surface.cc", | 100       "gpu_memory_buffer_factory_io_surface.cc", | 
| 97       "gpu_memory_buffer_factory_io_surface.h", | 101       "gpu_memory_buffer_factory_io_surface.h", | 
| 98       "image_transport_surface_mac.mm", | 102       "image_transport_surface_mac.mm", | 
| 99       "image_transport_surface_overlay_mac.h", | 103       "image_transport_surface_overlay_mac.h", | 
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 180   if (is_mac) { | 184   if (is_mac) { | 
| 181     sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 185     sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 
| 182   } | 186   } | 
| 183   if (is_linux) { | 187   if (is_linux) { | 
| 184     sources += [ "gpu_memory_buffer_factory_native_pixmap_unittest.cc" ] | 188     sources += [ "gpu_memory_buffer_factory_native_pixmap_unittest.cc" ] | 
| 185   } | 189   } | 
| 186   if (use_ozone) { | 190   if (use_ozone) { | 
| 187     deps += [ "//ui/ozone" ] | 191     deps += [ "//ui/ozone" ] | 
| 188   } | 192   } | 
| 189 } | 193 } | 
| OLD | NEW | 
|---|