| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "//base/third_party/dynamic_annotations", | 73 "//base/third_party/dynamic_annotations", |
| 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/config:crash_keys", | 77 "//gpu/config:crash_keys", |
| 78 "//gpu/ipc/common:ipc_common_sources", | 78 "//gpu/ipc/common:ipc_common_sources", |
| 79 ] | 79 ] |
| 80 libs = [] | 80 libs = [] |
| 81 if (is_win) { | 81 if (is_win) { |
| 82 sources += [ | 82 sources += [ |
| 83 "child_window_surface_win.cc", | |
| 84 "child_window_surface_win.h", | |
| 85 "child_window_win.cc", | 83 "child_window_win.cc", |
| 86 "child_window_win.h", | 84 "child_window_win.h", |
| 87 "direct_composition_child_surface_win.cc", | 85 "direct_composition_child_surface_win.cc", |
| 88 "direct_composition_child_surface_win.h", | 86 "direct_composition_child_surface_win.h", |
| 89 "direct_composition_surface_win.cc", | 87 "direct_composition_surface_win.cc", |
| 90 "direct_composition_surface_win.h", | 88 "direct_composition_surface_win.h", |
| 91 "image_transport_surface_win.cc", | 89 "image_transport_surface_win.cc", |
| 92 ] | 90 ] |
| 93 libs += [ "dwmapi.lib" ] | 91 libs += [ "dwmapi.lib" ] |
| 94 } | 92 } |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 if (is_mac) { | 179 if (is_mac) { |
| 182 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 180 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
| 183 } | 181 } |
| 184 if (is_linux) { | 182 if (is_linux) { |
| 185 sources += [ "gpu_memory_buffer_factory_native_pixmap_unittest.cc" ] | 183 sources += [ "gpu_memory_buffer_factory_native_pixmap_unittest.cc" ] |
| 186 } | 184 } |
| 187 if (use_ozone) { | 185 if (use_ozone) { |
| 188 deps += [ "//ui/ozone" ] | 186 deps += [ "//ui/ozone" ] |
| 189 } | 187 } |
| 190 } | 188 } |
| OLD | NEW |