| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'internal_ozone_platform_deps': [ | 7 'internal_ozone_platform_deps': [ |
| 8 'ozone_platform_egltest', | 8 'ozone_platform_eglheadless', |
| 9 ], | 9 ], |
| 10 'internal_ozone_platforms': [ | 10 'internal_ozone_platforms': [ |
| 11 'egltest' | 11 'eglheadless' |
| 12 ], | 12 ], |
| 13 }, | 13 }, |
| 14 'targets': [ | 14 'targets': [ |
| 15 { | 15 { |
| 16 'target_name': 'ozone_platform_egltest', | 16 'target_name': 'ozone_platform_eglheadless', |
| 17 'type': 'static_library', | 17 'type': 'static_library', |
| 18 'defines': [ | 18 'defines': [ |
| 19 'OZONE_IMPLEMENTATION', | 19 'OZONE_IMPLEMENTATION', |
| 20 ], | 20 ], |
| 21 'dependencies': [ | 21 'dependencies': [ |
| 22 '../../base/base.gyp:base', | 22 '../../base/base.gyp:base', |
| 23 '../../third_party/khronos/khronos.gyp:khronos_headers', | 23 '../../third_party/khronos/khronos.gyp:khronos_headers', |
| 24 '../events/devices/events_devices.gyp:events_devices', | 24 '../events/devices/events_devices.gyp:events_devices', |
| 25 '../events/events.gyp:events', | 25 '../events/events.gyp:events', |
| 26 '../events/ozone/events_ozone.gyp:events_ozone_evdev', | 26 '../events/ozone/events_ozone.gyp:events_ozone_evdev', |
| 27 '../events/ozone/events_ozone.gyp:events_ozone_layout', | 27 '../events/ozone/events_ozone.gyp:events_ozone_layout', |
| 28 '../events/platform/events_platform.gyp:events_platform', | 28 '../events/platform/events_platform.gyp:events_platform', |
| 29 '../gfx/gfx.gyp:gfx', | 29 '../gfx/gfx.gyp:gfx', |
| 30 'eglplatform_shim', | 30 'eglplatform_shim', |
| 31 ], | 31 ], |
| 32 'sources': [ | 32 'sources': [ |
| 33 'client_native_pixmap_factory_egltest.cc', | 33 'client_native_pixmap_factory_eglheadless.cc', |
| 34 'client_native_pixmap_factory_egltest.h', | 34 'client_native_pixmap_factory_eglheadless.h', |
| 35 'ozone_platform_egltest.cc', | 35 'ozone_platform_eglheadless.cc', |
| 36 'ozone_platform_egltest.h', | 36 'ozone_platform_eglheadless.h', |
| 37 ], | 37 ], |
| 38 }, | 38 }, |
| 39 { | 39 { |
| 40 'target_name': 'eglplatform_shim', | 40 'target_name': 'eglplatform_shim', |
| 41 'type': 'static_library', | 41 'type': 'static_library', |
| 42 'dependencies': [ | 42 'dependencies': [ |
| 43 '../../third_party/khronos/khronos.gyp:khronos_headers', | 43 '../../third_party/khronos/khronos.gyp:khronos_headers', |
| 44 ], | 44 ], |
| 45 'direct_dependent_settings': { | 45 'direct_dependent_settings': { |
| 46 'include_dirs': [ | 46 'include_dirs': [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 64 ], | 64 ], |
| 65 'outputs': [ | 65 'outputs': [ |
| 66 '<(output_h)', | 66 '<(output_h)', |
| 67 '<(output_cc)', | 67 '<(output_cc)', |
| 68 ], | 68 ], |
| 69 'action': ['python', | 69 'action': ['python', |
| 70 '<(generator)', | 70 '<(generator)', |
| 71 '--name', 'LibeglplatformShimLoader', | 71 '--name', 'LibeglplatformShimLoader', |
| 72 '--output-h', '<(output_h)', | 72 '--output-h', '<(output_h)', |
| 73 '--output-cc', '<(output_cc)', | 73 '--output-cc', '<(output_cc)', |
| 74 '--header', '"ui/ozone/platform/egltest/eglplatform_shim.h"
', | 74 '--header', '"ui/ozone/platform/eglheadless/eglplatform_shi
m.h"', |
| 75 'ShimQueryString', | 75 'ShimQueryString', |
| 76 'ShimInitialize', | 76 'ShimInitialize', |
| 77 'ShimTerminate', | 77 'ShimTerminate', |
| 78 'ShimCreateWindow', | 78 'ShimCreateWindow', |
| 79 'ShimQueryWindow', | 79 'ShimQueryWindow', |
| 80 'ShimDestroyWindow', | 80 'ShimDestroyWindow', |
| 81 'ShimGetNativeDisplay', | 81 'ShimGetNativeDisplay', |
| 82 'ShimGetNativeWindow', | 82 'ShimGetNativeWindow', |
| 83 'ShimReleaseNativeWindow', | 83 'ShimReleaseNativeWindow', |
| 84 ], | 84 ], |
| (...skipping 19 matching lines...) Expand all Loading... |
| 104 ], | 104 ], |
| 105 'sources': [ | 105 'sources': [ |
| 106 'eglplatform_shim.h', | 106 'eglplatform_shim.h', |
| 107 'eglplatform_shim_xeleven.cc', | 107 'eglplatform_shim_xeleven.cc', |
| 108 ], | 108 ], |
| 109 }, | 109 }, |
| 110 ], | 110 ], |
| 111 }], | 111 }], |
| 112 ], | 112 ], |
| 113 } | 113 } |
| OLD | NEW |