OLD | NEW |
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 }, | 49 }, |
50 { | 50 { |
51 # GN version: //ui/ozone | 51 # GN version: //ui/ozone |
52 'target_name': 'ozone', | 52 'target_name': 'ozone', |
53 'type': '<(component)', | 53 'type': '<(component)', |
54 'dependencies': [ | 54 'dependencies': [ |
55 '<(DEPTH)/base/base.gyp:base', | 55 '<(DEPTH)/base/base.gyp:base', |
56 '<(DEPTH)/ipc/ipc.gyp:ipc', | 56 '<(DEPTH)/ipc/ipc.gyp:ipc', |
57 '<(DEPTH)/skia/skia.gyp:skia', | 57 '<(DEPTH)/skia/skia.gyp:skia', |
58 '<(DEPTH)/ui/display/display.gyp:display_types', | 58 '<(DEPTH)/ui/display/display.gyp:display_types', |
| 59 '<(DEPTH)/ui/display/display.gyp:display_util', |
59 '<(DEPTH)/ui/events/events.gyp:events', | 60 '<(DEPTH)/ui/events/events.gyp:events', |
60 '<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone', | 61 '<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone', |
61 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 62 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
62 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 63 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
63 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', | 64 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', |
64 '<@(external_ozone_platform_deps)', | 65 '<@(external_ozone_platform_deps)', |
65 '<@(internal_ozone_platform_deps)', | 66 '<@(internal_ozone_platform_deps)', |
66 'ozone_base', | 67 'ozone_base', |
67 ], | 68 ], |
68 'defines': [ | 69 'defines': [ |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 'platform/dri/gbm.gypi', | 209 'platform/dri/gbm.gypi', |
209 ], | 210 ], |
210 }], | 211 }], |
211 ['<(ozone_platform_test) == 1', { | 212 ['<(ozone_platform_test) == 1', { |
212 'includes': [ | 213 'includes': [ |
213 'platform/test/test.gypi', | 214 'platform/test/test.gypi', |
214 ], | 215 ], |
215 }], | 216 }], |
216 ], | 217 ], |
217 } | 218 } |
OLD | NEW |