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

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: Introduce NativePixmapClient Created 5 years, 6 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_overlay_manager.cc', 107 'common/stub_overlay_manager.cc',
108 'common/stub_overlay_manager.h', 108 'common/stub_overlay_manager.h',
109 'platform_selection.cc', 109 'platform_selection.cc',
110 'platform_selection.h', 110 'platform_selection.h',
111 'public/input_controller.cc', 111 'public/input_controller.cc',
112 'public/input_controller.h', 112 'public/input_controller.h',
113 'public/native_pixmap_client.cc',
114 'public/native_pixmap_client.h',
113 'public/ozone_gpu_test_helper.cc', 115 'public/ozone_gpu_test_helper.cc',
114 'public/ozone_gpu_test_helper.h', 116 'public/ozone_gpu_test_helper.h',
115 'public/ozone_platform.cc', 117 'public/ozone_platform.cc',
116 'public/ozone_platform.h', 118 'public/ozone_platform.h',
117 'public/ozone_switches.cc', 119 'public/ozone_switches.cc',
118 'public/ozone_switches.h', 120 'public/ozone_switches.h',
119 '<@(external_ozone_platform_files)', 121 '<@(external_ozone_platform_files)',
120 ], 122 ],
121 'actions': [ 123 'actions': [
122 { 124 {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 'outputs': [ 158 'outputs': [
157 '<(constructor_list_cc_file)', 159 '<(constructor_list_cc_file)',
158 ], 160 ],
159 'action': [ 161 'action': [
160 'python', 162 'python',
161 '<(generator_path)', 163 '<(generator_path)',
162 '--platform_list=<(platform_list_txt_file)', 164 '--platform_list=<(platform_list_txt_file)',
163 '--output_cc=<(constructor_list_cc_file)', 165 '--output_cc=<(constructor_list_cc_file)',
164 '--namespace=ui', 166 '--namespace=ui',
165 '--typename=OzonePlatform', 167 '--typename=OzonePlatform',
166 '--include="ui/ozone/public/ozone_platform.h"' 168 '--typename=NativePixmapClient',
169 '--include="ui/ozone/public/ozone_platform.h"',
170 '--include="ui/ozone/public/native_pixmap_client.h"'
167 ], 171 ],
168 }, 172 },
169 ], 173 ],
170 'conditions': [ 174 'conditions': [
171 ['use_udev == 0', { 175 ['use_udev == 0', {
172 'sources/': [ 176 'sources/': [
173 ['exclude', '_udev\\.(h|cc)$'], 177 ['exclude', '_udev\\.(h|cc)$'],
174 ], 178 ],
175 }], 179 }],
176 ], 180 ],
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'platform/drm/gbm.gypi', 222 'platform/drm/gbm.gypi',
219 ], 223 ],
220 }], 224 }],
221 ['<(ozone_platform_test) == 1', { 225 ['<(ozone_platform_test) == 1', {
222 'includes': [ 226 'includes': [
223 'platform/test/test.gypi', 227 'platform/test/test.gypi',
224 ], 228 ],
225 }], 229 }],
226 ], 230 ],
227 } 231 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698