| 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 18 matching lines...) Expand all Loading... |
| 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/gfx/gfx.gyp:gfx_geometry', | 38 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 39 '<(DEPTH)/ui/gfx/ipc/geometry/gfx_ipc_geometry.gyp:gfx_ipc_geometry', |
| 39 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', | 40 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', |
| 40 '<(DEPTH)/ui/gfx/ipc/skia/gfx_ipc_skia.gyp:gfx_ipc_skia', | 41 '<(DEPTH)/ui/gfx/ipc/skia/gfx_ipc_skia.gyp:gfx_ipc_skia', |
| 41 ], | 42 ], |
| 42 'defines': [ | 43 'defines': [ |
| 43 'OZONE_BASE_IMPLEMENTATION', | 44 'OZONE_BASE_IMPLEMENTATION', |
| 44 ], | 45 ], |
| 45 'sources': [ | 46 'sources': [ |
| 46 'public/client_native_pixmap.h', | 47 'public/client_native_pixmap.h', |
| 47 'public/cursor_factory_ozone.cc', | 48 'public/cursor_factory_ozone.cc', |
| 48 'public/cursor_factory_ozone.h', | 49 'public/cursor_factory_ozone.h', |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 'platform/headless/headless.gypi', | 280 'platform/headless/headless.gypi', |
| 280 ], | 281 ], |
| 281 }], | 282 }], |
| 282 ['<(ozone_platform_wayland) == 1', { | 283 ['<(ozone_platform_wayland) == 1', { |
| 283 'includes': [ | 284 'includes': [ |
| 284 'platform/wayland/wayland.gypi', | 285 'platform/wayland/wayland.gypi', |
| 285 ], | 286 ], |
| 286 }], | 287 }], |
| 287 ], | 288 ], |
| 288 } | 289 } |
| OLD | NEW |