| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 # GN version: //ui/ozone/common | 72 # GN version: //ui/ozone/common |
| 73 'target_name': 'ozone_common', | 73 'target_name': 'ozone_common', |
| 74 'type': 'static_library', | 74 'type': 'static_library', |
| 75 'dependencies': [ | 75 'dependencies': [ |
| 76 'ozone_base', | 76 'ozone_base', |
| 77 '<(DEPTH)/base/base.gyp:base', | 77 '<(DEPTH)/base/base.gyp:base', |
| 78 '<(DEPTH)/ipc/ipc.gyp:ipc', | 78 '<(DEPTH)/ipc/ipc.gyp:ipc', |
| 79 '<(DEPTH)/skia/skia.gyp:skia', | 79 '<(DEPTH)/skia/skia.gyp:skia', |
| 80 '<(DEPTH)/ui/display/display.gyp:display_types', | 80 '<(DEPTH)/ui/display/display.gyp:display_types', |
| 81 '<(DEPTH)/ui/display/display.gyp:display_util', | 81 '<(DEPTH)/ui/display/display.gyp:display_util', |
| 82 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 82 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 83 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 83 '<(DEPTH)/ui/gfx/ipc/geometry/gfx_ipc_geometry.gyp:gfx_ipc_geometry', | 84 '<(DEPTH)/ui/gfx/ipc/geometry/gfx_ipc_geometry.gyp:gfx_ipc_geometry', |
| 84 '<(DEPTH)/ui/gfx/ipc/skia/gfx_ipc_skia.gyp:gfx_ipc_skia', | 85 '<(DEPTH)/ui/gfx/ipc/skia/gfx_ipc_skia.gyp:gfx_ipc_skia', |
| 85 ], | 86 ], |
| 86 'sources': [ | 87 'sources': [ |
| 87 'common/display_mode_proxy.cc', | 88 'common/display_mode_proxy.cc', |
| 88 'common/display_mode_proxy.h', | 89 'common/display_mode_proxy.h', |
| 89 'common/display_snapshot_proxy.cc', | 90 'common/display_snapshot_proxy.cc', |
| 90 'common/display_snapshot_proxy.h', | 91 'common/display_snapshot_proxy.h', |
| 91 'common/display_util.cc', | 92 'common/display_util.cc', |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 'platform/headless/headless.gypi', | 283 'platform/headless/headless.gypi', |
| 283 ], | 284 ], |
| 284 }], | 285 }], |
| 285 ['<(ozone_platform_wayland) == 1', { | 286 ['<(ozone_platform_wayland) == 1', { |
| 286 'includes': [ | 287 'includes': [ |
| 287 'platform/wayland/wayland.gypi', | 288 'platform/wayland/wayland.gypi', |
| 288 ], | 289 ], |
| 289 }], | 290 }], |
| 290 ], | 291 ], |
| 291 } | 292 } |
| OLD | NEW |