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

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

Issue 1717573002: ozone: Fix the way platform tests link ozone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: exists Created 4 years, 10 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 | « ui/ozone/empty.cc ('k') | ui/ozone/platform/drm/BUILD.gn » ('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 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 'public/ozone_switches.h', 76 'public/ozone_switches.h',
77 'public/surface_factory_ozone.cc', 77 'public/surface_factory_ozone.cc',
78 'public/surface_factory_ozone.h', 78 'public/surface_factory_ozone.h',
79 'public/surface_ozone_canvas.h', 79 'public/surface_ozone_canvas.h',
80 'public/surface_ozone_egl.cc', 80 'public/surface_ozone_egl.cc',
81 'public/surface_ozone_egl.h', 81 'public/surface_ozone_egl.h',
82 'public/system_input_injector.h', 82 'public/system_input_injector.h',
83 ], 83 ],
84 }, 84 },
85 { 85 {
86 # GN version: //ui/ozone 86 # GN version: //ui/ozone:platform
87 'target_name': 'ozone', 87 'target_name': 'ozone_platform',
88 'type': '<(component)', 88 'type': 'static_library',
89 'dependencies': [ 89 'dependencies': [
90 '<(DEPTH)/base/base.gyp:base', 90 '<(DEPTH)/base/base.gyp:base',
91 '<(DEPTH)/ipc/ipc.gyp:ipc', 91 '<(DEPTH)/ipc/ipc.gyp:ipc',
92 '<(DEPTH)/skia/skia.gyp:skia', 92 '<(DEPTH)/skia/skia.gyp:skia',
93 '<(DEPTH)/ui/display/display.gyp:display_types', 93 '<(DEPTH)/ui/display/display.gyp:display_types',
94 '<(DEPTH)/ui/display/display.gyp:display_util', 94 '<(DEPTH)/ui/display/display.gyp:display_util',
95 '<(DEPTH)/ui/events/events.gyp:events', 95 '<(DEPTH)/ui/events/events.gyp:events',
96 '<(DEPTH)/ui/events/devices/events_devices.gyp:events_devices', 96 '<(DEPTH)/ui/events/devices/events_devices.gyp:events_devices',
97 '<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone', 97 '<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone',
98 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 98 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 ], 188 ],
189 'conditions': [ 189 'conditions': [
190 ['use_udev == 0', { 190 ['use_udev == 0', {
191 'sources/': [ 191 'sources/': [
192 ['exclude', '_udev\\.(h|cc)$'], 192 ['exclude', '_udev\\.(h|cc)$'],
193 ], 193 ],
194 }], 194 }],
195 ], 195 ],
196 }, 196 },
197 { 197 {
198 # GN version: //ui/ozone
199 'target_name': 'ozone',
200 'type': '<(component)',
201 'sources': [
202 'empty.cc',
203 ],
204 'dependencies': [
205 'ozone_platform',
206 ],
207 },
208 {
198 'target_name': 'ozone_unittests', 209 'target_name': 'ozone_unittests',
199 'type': '<(gtest_target_type)', 210 'type': '<(gtest_target_type)',
200 'sources': [ 211 'sources': [
201 'run_all_unittests.cc', 212 'run_all_unittests.cc',
202 ], 213 ],
203 'dependencies': [ 214 'dependencies': [
204 'ozone',
205 '../../base/base.gyp:base', 215 '../../base/base.gyp:base',
206 '../../base/base.gyp:test_support_base', 216 '../../base/base.gyp:test_support_base',
207 '../../testing/gtest.gyp:gtest', 217 '../../testing/gtest.gyp:gtest',
208 '../gfx/gfx.gyp:gfx_geometry', 218 '../gfx/gfx.gyp:gfx_geometry',
209 '<@(external_ozone_platform_unittest_deps)', 219 '<@(external_ozone_platform_unittest_deps)',
210 '<@(internal_ozone_platform_unittest_deps)', 220 '<@(internal_ozone_platform_unittest_deps)',
211 ], 221 ],
212 }, 222 },
213 { 223 {
214 'target_name': 'vgem_map', 224 'target_name': 'vgem_map',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 'platform/headless/headless.gypi', 260 'platform/headless/headless.gypi',
251 ], 261 ],
252 }], 262 }],
253 ['<(ozone_platform_wayland) == 1', { 263 ['<(ozone_platform_wayland) == 1', {
254 'includes': [ 264 'includes': [
255 'platform/wayland/wayland.gypi', 265 'platform/wayland/wayland.gypi',
256 ], 266 ],
257 }], 267 }],
258 ], 268 ],
259 } 269 }
OLDNEW
« no previous file with comments | « ui/ozone/empty.cc ('k') | ui/ozone/platform/drm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698