Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: gpu/ipc/service/BUILD.gn

Issue 1901253002: Mac: Towards moving CALayerTree to the browser proc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove BUILD.gn Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gpu/gpu_ipc_service.gypi ('k') | gpu/ipc/service/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 libs = [] 61 libs = []
62 if (is_win) { 62 if (is_win) {
63 sources += [ 63 sources += [
64 "child_window_surface_win.cc", 64 "child_window_surface_win.cc",
65 "child_window_surface_win.h", 65 "child_window_surface_win.h",
66 "image_transport_surface_win.cc", 66 "image_transport_surface_win.cc",
67 ] 67 ]
68 } 68 }
69 if (is_mac) { 69 if (is_mac) {
70 sources += [ 70 sources += [
71 "ca_layer_partial_damage_tree_mac.h",
72 "ca_layer_partial_damage_tree_mac.mm",
73 "ca_layer_tree_mac.h",
74 "ca_layer_tree_mac.mm",
75 "gpu_memory_buffer_factory_io_surface.cc", 71 "gpu_memory_buffer_factory_io_surface.cc",
76 "gpu_memory_buffer_factory_io_surface.h", 72 "gpu_memory_buffer_factory_io_surface.h",
77 "image_transport_surface_mac.mm", 73 "image_transport_surface_mac.mm",
78 "image_transport_surface_overlay_mac.h", 74 "image_transport_surface_overlay_mac.h",
79 "image_transport_surface_overlay_mac.mm", 75 "image_transport_surface_overlay_mac.mm",
80 ] 76 ]
81 deps += [ 77 deps += [ "//ui/accelerated_widget_mac" ]
82 "//skia",
83 "//ui/accelerated_widget_mac",
84 ]
85 lib_dirs = [ "$mac_sdk_path/usr/lib" ] 78 lib_dirs = [ "$mac_sdk_path/usr/lib" ]
86 libs += [ 79 libs += [ "QuartzCore.framework" ]
87 "AVFoundation.framework",
88 "CoreMedia.framework",
89 "QuartzCore.framework",
90 ]
91 } 80 }
92 if (is_android) { 81 if (is_android) {
93 sources += [ 82 sources += [
94 "gpu_memory_buffer_factory_surface_texture.cc", 83 "gpu_memory_buffer_factory_surface_texture.cc",
95 "gpu_memory_buffer_factory_surface_texture.h", 84 "gpu_memory_buffer_factory_surface_texture.h",
96 "image_transport_surface_android.cc", 85 "image_transport_surface_android.cc",
97 "stream_texture_android.cc", 86 "stream_texture_android.cc",
98 "stream_texture_android.h", 87 "stream_texture_android.h",
99 ] 88 ]
100 libs += [ "android" ] 89 libs += [ "android" ]
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 "//ui/gfx:test_support", 143 "//ui/gfx:test_support",
155 "//ui/gl:gl_unittest_utils", 144 "//ui/gl:gl_unittest_utils",
156 "//ui/gl:test_support", 145 "//ui/gl:test_support",
157 "//url", 146 "//url",
158 ] 147 ]
159 libs = [] 148 libs = []
160 if (is_android) { 149 if (is_android) {
161 sources += [ "gpu_memory_buffer_factory_surface_texture_unittest.cc" ] 150 sources += [ "gpu_memory_buffer_factory_surface_texture_unittest.cc" ]
162 } 151 }
163 if (is_mac) { 152 if (is_mac) {
164 sources += [ 153 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ]
165 "ca_layer_tree_unittest_mac.mm",
166 "gpu_memory_buffer_factory_io_surface_unittest.cc",
167 ]
168 deps += [ "//ui/accelerated_widget_mac" ]
169 libs += [
170 "AVFoundation.framework",
171 "CoreMedia.framework",
172 "QuartzCore.framework",
173 ]
174 } 154 }
175 if (use_ozone) { 155 if (use_ozone) {
176 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] 156 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ]
177 deps += [ "//ui/ozone" ] 157 deps += [ "//ui/ozone" ]
178 } 158 }
179 } 159 }
OLDNEW
« no previous file with comments | « gpu/gpu_ipc_service.gypi ('k') | gpu/ipc/service/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698