| 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 17 matching lines...) Expand all Loading... |
| 28 { | 28 { |
| 29 # GN version: //ui/ozone:ozone_base | 29 # GN version: //ui/ozone:ozone_base |
| 30 'target_name': 'ozone_base', | 30 'target_name': 'ozone_base', |
| 31 'type': '<(component)', | 31 'type': '<(component)', |
| 32 'dependencies': [ | 32 'dependencies': [ |
| 33 '<(DEPTH)/base/base.gyp:base', | 33 '<(DEPTH)/base/base.gyp:base', |
| 34 '<(DEPTH)/ipc/ipc.gyp:ipc', | 34 '<(DEPTH)/ipc/ipc.gyp:ipc', |
| 35 '<(DEPTH)/skia/skia.gyp:skia', | 35 '<(DEPTH)/skia/skia.gyp:skia', |
| 36 '<(DEPTH)/ui/display/display.gyp:display_types', | 36 '<(DEPTH)/ui/display/display.gyp:display_types', |
| 37 '<(DEPTH)/ui/display/display.gyp:display_util', | 37 '<(DEPTH)/ui/display/display.gyp:display_util', |
| 38 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 38 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 39 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 39 '<(DEPTH)/ui/gfx/ipc/geometry/gfx_ipc_geometry.gyp:gfx_ipc_geometry', | 40 '<(DEPTH)/ui/gfx/ipc/geometry/gfx_ipc_geometry.gyp:gfx_ipc_geometry', |
| 40 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', | 41 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', |
| 41 '<(DEPTH)/ui/gfx/ipc/skia/gfx_ipc_skia.gyp:gfx_ipc_skia', | 42 '<(DEPTH)/ui/gfx/ipc/skia/gfx_ipc_skia.gyp:gfx_ipc_skia', |
| 42 ], | 43 ], |
| 43 'defines': [ | 44 'defines': [ |
| 44 'OZONE_BASE_IMPLEMENTATION', | 45 'OZONE_BASE_IMPLEMENTATION', |
| 45 ], | 46 ], |
| 46 'sources': [ | 47 'sources': [ |
| 47 'public/client_native_pixmap.h', | 48 'public/client_native_pixmap.h', |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 'platform/headless/headless.gypi', | 282 'platform/headless/headless.gypi', |
| 282 ], | 283 ], |
| 283 }], | 284 }], |
| 284 ['<(ozone_platform_wayland) == 1', { | 285 ['<(ozone_platform_wayland) == 1', { |
| 285 'includes': [ | 286 'includes': [ |
| 286 'platform/wayland/wayland.gypi', | 287 'platform/wayland/wayland.gypi', |
| 287 ], | 288 ], |
| 288 }], | 289 }], |
| 289 ], | 290 ], |
| 290 } | 291 } |
| OLD | NEW |