| 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 import("//tools/generate_library_loader/generate_library_loader.gni") | 5 import("//tools/generate_library_loader/generate_library_loader.gni") |
| 6 | 6 |
| 7 source_set("egltest") { | 7 source_set("egltest") { |
| 8 sources = [ | 8 sources = [ |
| 9 "ozone_platform_egltest.cc", | 9 "ozone_platform_egltest.cc", |
| 10 "ozone_platform_egltest.h", | 10 "ozone_platform_egltest.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "ShimInitialize", | 29 "ShimInitialize", |
| 30 "ShimTerminate", | 30 "ShimTerminate", |
| 31 "ShimCreateWindow", | 31 "ShimCreateWindow", |
| 32 "ShimQueryWindow", | 32 "ShimQueryWindow", |
| 33 "ShimDestroyWindow", | 33 "ShimDestroyWindow", |
| 34 "ShimGetNativeDisplay", | 34 "ShimGetNativeDisplay", |
| 35 "ShimGetNativeWindow", | 35 "ShimGetNativeWindow", |
| 36 "ShimReleaseNativeWindow", | 36 "ShimReleaseNativeWindow", |
| 37 ] | 37 ] |
| 38 } | 38 } |
| 39 | |
| 40 # TODO(spang): eglplatform_shim_x11 once support lands: http://crbug.com/380327 | 39 # TODO(spang): eglplatform_shim_x11 once support lands: http://crbug.com/380327 |
| OLD | NEW |