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

Side by Side Diff: gpu/gpu_ipc_service.gypi

Issue 1845563005: Refactor content/common/gpu into gpu/ipc/service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Privatize gpu/command_buffer/service dep on gpu/command_buffer/common:common_sources 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
OLDNEW
(Empty)
1 # Copyright (c) 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'dependencies': [
7 '../base/base.gyp:base',
8 '../ipc/ipc.gyp:ipc',
9 '../ui/events/events.gyp:events_base',
10 '../ui/events/events.gyp:events_ipc',
11 '../ui/gfx/gfx.gyp:gfx',
12 '../ui/gfx/gfx.gyp:gfx_geometry',
13 '../ui/gl/gl.gyp:gl',
14 '../url/url.gyp:url_lib',
15 ],
16 'include_dirs': [
17 '..',
18 ],
19 'sources': [
20 'ipc/service/gpu_channel.cc',
21 'ipc/service/gpu_channel.h',
22 'ipc/service/gpu_channel_manager.cc',
23 'ipc/service/gpu_channel_manager.h',
24 'ipc/service/gpu_channel_manager_delegate.h',
25 'ipc/service/gpu_command_buffer_stub.cc',
26 'ipc/service/gpu_command_buffer_stub.h',
27 'ipc/service/gpu_config.h',
28 'ipc/service/gpu_memory_buffer_factory.cc',
29 'ipc/service/gpu_memory_buffer_factory.h',
30 'ipc/service/gpu_memory_manager.cc',
31 'ipc/service/gpu_memory_manager.h',
32 'ipc/service/gpu_memory_tracking.cc',
33 'ipc/service/gpu_memory_tracking.h',
34 'ipc/service/gpu_watchdog.h',
35 'ipc/service/image_transport_surface.h',
36 'ipc/service/pass_through_image_transport_surface.cc',
37 'ipc/service/pass_through_image_transport_surface.h',
38 ],
39 'conditions': [
40 ['OS=="win"', {
41 'sources': [
42 'ipc/service/child_window_surface_win.cc',
43 'ipc/service/child_window_surface_win.h',
44 'ipc/service/image_transport_surface_win.cc',
45 ],
46 }],
47 ['OS=="mac"', {
48 'sources': [
49 'ipc/service/image_transport_surface_overlay_mac.h',
50 'ipc/service/image_transport_surface_overlay_mac.mm',
51 'ipc/service/ca_layer_partial_damage_tree_mac.h',
52 'ipc/service/ca_layer_partial_damage_tree_mac.mm',
53 'ipc/service/ca_layer_tree_mac.h',
54 'ipc/service/ca_layer_tree_mac.mm',
55 'ipc/service/gpu_memory_buffer_factory_io_surface.cc',
56 'ipc/service/gpu_memory_buffer_factory_io_surface.h',
57 'ipc/service/image_transport_surface_mac.mm',
58 ],
59 'dependencies': [
60 '../skia/skia.gyp:skia',
61 '../ui/accelerated_widget_mac/accelerated_widget_mac.gyp:accelerated_wid get_mac',
62 ],
63 'link_settings': {
64 'libraries': [
65 '$(SDKROOT)/System/Library/Frameworks/AVFoundation.framework',
66 '$(SDKROOT)/System/Library/Frameworks/CoreMedia.framework',
67 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
68 ],
69 },
70 }],
71 ['OS=="android"', {
72 'sources': [
73 'ipc/service/image_transport_surface_android.cc',
74 'ipc/service/stream_texture_android.cc',
75 'ipc/service/stream_texture_android.h',
76 'ipc/service/gpu_memory_buffer_factory_surface_texture.cc',
77 'ipc/service/gpu_memory_buffer_factory_surface_texture.h',
78 ],
79 'link_settings': {
80 'libraries': [
81 '-landroid', # ANativeWindow
82 ],
83 },
84 }],
85 ['OS=="linux"', {
86 'sources': [ 'ipc/service/image_transport_surface_linux.cc' ],
87 }],
88 ['use_x11 == 1 and (target_arch != "arm" or chromeos == 0)', {
89 'sources': [
90 'ipc/service/x_util.h',
91 ],
92 }],
93 ['use_ozone == 1', {
94 'sources': [
95 'ipc/service/gpu_memory_buffer_factory_ozone_native_pixmap.cc',
96 'ipc/service/gpu_memory_buffer_factory_ozone_native_pixmap.h',
97 ],
98 'dependencies': [
99 '../ui/ozone/ozone.gyp:ozone',
100 ],
101 }],
102 ],
103 }
OLDNEW
« no previous file with comments | « gpu/gpu.gyp ('k') | gpu/ipc/service/BUILD.gn » ('j') | gpu/ipc/service/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698