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

Side by Side Diff: ui/ozone/ozone.gyp

Issue 1128113011: ozone: Introduce ClientPixmap and ClientPixmapFactory for non-GPU processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed nits Created 5 years, 4 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
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Normally, the external_ozone_platform* variables below can be 8 # Normally, the external_ozone_platform* variables below can be
9 # overridden by supplement.gypi which must exist exactly one level 9 # overridden by supplement.gypi which must exist exactly one level
10 # below the top-level src directory. They can now also be set in 10 # below the top-level src directory. They can now also be set in
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 'common/display_util.h', 97 'common/display_util.h',
98 'common/egl_util.cc', 98 'common/egl_util.cc',
99 'common/egl_util.h', 99 'common/egl_util.h',
100 'common/gpu/ozone_gpu_message_generator.cc', 100 'common/gpu/ozone_gpu_message_generator.cc',
101 'common/gpu/ozone_gpu_message_generator.h', 101 'common/gpu/ozone_gpu_message_generator.h',
102 'common/gpu/ozone_gpu_message_params.cc', 102 'common/gpu/ozone_gpu_message_params.cc',
103 'common/gpu/ozone_gpu_message_params.h', 103 'common/gpu/ozone_gpu_message_params.h',
104 'common/gpu/ozone_gpu_messages.h', 104 'common/gpu/ozone_gpu_messages.h',
105 'common/native_display_delegate_ozone.cc', 105 'common/native_display_delegate_ozone.cc',
106 'common/native_display_delegate_ozone.h', 106 'common/native_display_delegate_ozone.h',
107 'common/stub_client_native_pixmap_manager.cc',
108 'common/stub_client_native_pixmap_manager.h',
107 'common/stub_overlay_manager.cc', 109 'common/stub_overlay_manager.cc',
108 'common/stub_overlay_manager.h', 110 'common/stub_overlay_manager.h',
109 'platform_selection.cc', 111 'platform_selection.cc',
110 'platform_selection.h', 112 'platform_selection.h',
113 'public/client_native_pixmap_manager.cc',
114 'public/client_native_pixmap_manager.h',
111 'public/input_controller.cc', 115 'public/input_controller.cc',
112 'public/input_controller.h', 116 'public/input_controller.h',
113 'public/ozone_gpu_test_helper.cc', 117 'public/ozone_gpu_test_helper.cc',
114 'public/ozone_gpu_test_helper.h', 118 'public/ozone_gpu_test_helper.h',
115 'public/ozone_platform.cc', 119 'public/ozone_platform.cc',
116 'public/ozone_platform.h', 120 'public/ozone_platform.h',
117 'public/ozone_switches.cc', 121 'public/ozone_switches.cc',
118 'public/ozone_switches.h', 122 'public/ozone_switches.h',
119 '<@(external_ozone_platform_files)', 123 '<@(external_ozone_platform_files)',
120 ], 124 ],
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 'outputs': [ 160 'outputs': [
157 '<(constructor_list_cc_file)', 161 '<(constructor_list_cc_file)',
158 ], 162 ],
159 'action': [ 163 'action': [
160 'python', 164 'python',
161 '<(generator_path)', 165 '<(generator_path)',
162 '--platform_list=<(platform_list_txt_file)', 166 '--platform_list=<(platform_list_txt_file)',
163 '--output_cc=<(constructor_list_cc_file)', 167 '--output_cc=<(constructor_list_cc_file)',
164 '--namespace=ui', 168 '--namespace=ui',
165 '--typename=OzonePlatform', 169 '--typename=OzonePlatform',
166 '--include="ui/ozone/public/ozone_platform.h"' 170 '--typename=ClientNativePixmapManager',
171 '--include="ui/ozone/public/ozone_platform.h"',
172 '--include="ui/ozone/public/client_native_pixmap_manager.h"'
167 ], 173 ],
168 }, 174 },
169 ], 175 ],
170 'conditions': [ 176 'conditions': [
171 ['use_udev == 0', { 177 ['use_udev == 0', {
172 'sources/': [ 178 'sources/': [
173 ['exclude', '_udev\\.(h|cc)$'], 179 ['exclude', '_udev\\.(h|cc)$'],
174 ], 180 ],
175 }], 181 }],
176 ], 182 ],
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'platform/drm/gbm.gypi', 224 'platform/drm/gbm.gypi',
219 ], 225 ],
220 }], 226 }],
221 ['<(ozone_platform_test) == 1', { 227 ['<(ozone_platform_test) == 1', {
222 'includes': [ 228 'includes': [
223 'platform/test/test.gypi', 229 'platform/test/test.gypi',
224 ], 230 ],
225 }], 231 }],
226 ], 232 ],
227 } 233 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698