| 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 26 matching lines...) Expand all Loading... |
| 37 'public/gpu_platform_support.h', | 37 'public/gpu_platform_support.h', |
| 38 'public/gpu_platform_support_host.cc', | 38 'public/gpu_platform_support_host.cc', |
| 39 'public/gpu_platform_support_host.h', | 39 'public/gpu_platform_support_host.h', |
| 40 'public/native_pixmap.h', | 40 'public/native_pixmap.h', |
| 41 'public/overlay_candidates_ozone.cc', | 41 'public/overlay_candidates_ozone.cc', |
| 42 'public/overlay_candidates_ozone.h', | 42 'public/overlay_candidates_ozone.h', |
| 43 'public/surface_factory_ozone.cc', | 43 'public/surface_factory_ozone.cc', |
| 44 'public/surface_factory_ozone.h', | 44 'public/surface_factory_ozone.h', |
| 45 'public/surface_ozone_canvas.h', | 45 'public/surface_ozone_canvas.h', |
| 46 'public/surface_ozone_egl.h', | 46 'public/surface_ozone_egl.h', |
| 47 'public/system_input_injector.h', |
| 47 ], | 48 ], |
| 48 }, | 49 }, |
| 49 { | 50 { |
| 50 # GN version: //ui/ozone | 51 # GN version: //ui/ozone |
| 51 'target_name': 'ozone', | 52 'target_name': 'ozone', |
| 52 'type': '<(component)', | 53 'type': '<(component)', |
| 53 'dependencies': [ | 54 'dependencies': [ |
| 54 '<(DEPTH)/base/base.gyp:base', | 55 '<(DEPTH)/base/base.gyp:base', |
| 55 '<(DEPTH)/ipc/ipc.gyp:ipc', | 56 '<(DEPTH)/ipc/ipc.gyp:ipc', |
| 56 '<(DEPTH)/skia/skia.gyp:skia', | 57 '<(DEPTH)/skia/skia.gyp:skia', |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 'platform/dri/gbm.gypi', | 203 'platform/dri/gbm.gypi', |
| 203 ], | 204 ], |
| 204 }], | 205 }], |
| 205 ['<(ozone_platform_test) == 1', { | 206 ['<(ozone_platform_test) == 1', { |
| 206 'includes': [ | 207 'includes': [ |
| 207 'platform/test/test.gypi', | 208 'platform/test/test.gypi', |
| 208 ], | 209 ], |
| 209 }], | 210 }], |
| 210 ], | 211 ], |
| 211 } | 212 } |
| OLD | NEW |