| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 76     "//gpu/config:config_sources", | 76     "//gpu/config:config_sources", | 
| 77     "//gpu/ipc/common:ipc_common_sources", | 77     "//gpu/ipc/common:ipc_common_sources", | 
| 78   ] | 78   ] | 
| 79   libs = [] | 79   libs = [] | 
| 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", | 
|  | 87       "direct_composition_child_surface_win.h", | 
| 86       "direct_composition_surface_win.cc", | 88       "direct_composition_surface_win.cc", | 
| 87       "direct_composition_surface_win.h", | 89       "direct_composition_surface_win.h", | 
| 88       "image_transport_surface_win.cc", | 90       "image_transport_surface_win.cc", | 
| 89     ] | 91     ] | 
| 90     libs += [ "dwmapi.lib" ] | 92     libs += [ "dwmapi.lib" ] | 
| 91   } | 93   } | 
| 92   if (is_mac) { | 94   if (is_mac) { | 
| 93     sources += [ | 95     sources += [ | 
| 94       "gpu_memory_buffer_factory_io_surface.cc", | 96       "gpu_memory_buffer_factory_io_surface.cc", | 
| 95       "gpu_memory_buffer_factory_io_surface.h", | 97       "gpu_memory_buffer_factory_io_surface.h", | 
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 178   if (is_mac) { | 180   if (is_mac) { | 
| 179     sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 181     sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 
| 180   } | 182   } | 
| 181   if (is_linux) { | 183   if (is_linux) { | 
| 182     sources += [ "gpu_memory_buffer_factory_native_pixmap_unittest.cc" ] | 184     sources += [ "gpu_memory_buffer_factory_native_pixmap_unittest.cc" ] | 
| 183   } | 185   } | 
| 184   if (use_ozone) { | 186   if (use_ozone) { | 
| 185     deps += [ "//ui/ozone" ] | 187     deps += [ "//ui/ozone" ] | 
| 186   } | 188   } | 
| 187 } | 189 } | 
| OLD | NEW | 
|---|