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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "//gpu/command_buffer/common:common_sources", | 74 "//gpu/command_buffer/common:common_sources", |
75 "//gpu/command_buffer/service:service_sources", | 75 "//gpu/command_buffer/service:service_sources", |
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", |
| 85 "child_window_win.h", |
84 "image_transport_surface_win.cc", | 86 "image_transport_surface_win.cc", |
85 ] | 87 ] |
86 } | 88 } |
87 if (is_mac) { | 89 if (is_mac) { |
88 sources += [ | 90 sources += [ |
89 "gpu_memory_buffer_factory_io_surface.cc", | 91 "gpu_memory_buffer_factory_io_surface.cc", |
90 "gpu_memory_buffer_factory_io_surface.h", | 92 "gpu_memory_buffer_factory_io_surface.h", |
91 "image_transport_surface_mac.mm", | 93 "image_transport_surface_mac.mm", |
92 "image_transport_surface_overlay_mac.h", | 94 "image_transport_surface_overlay_mac.h", |
93 "image_transport_surface_overlay_mac.mm", | 95 "image_transport_surface_overlay_mac.mm", |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 deps += [ "//ui/android:ui_java" ] | 173 deps += [ "//ui/android:ui_java" ] |
172 } | 174 } |
173 if (is_mac) { | 175 if (is_mac) { |
174 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 176 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
175 } | 177 } |
176 if (use_ozone) { | 178 if (use_ozone) { |
177 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] | 179 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] |
178 deps += [ "//ui/ozone" ] | 180 deps += [ "//ui/ozone" ] |
179 } | 181 } |
180 } | 182 } |
OLD | NEW |