| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # GYP version: gpu/gles2_conform_support/gles2_conform_support.gyp:egl_main_nati
ve |
| 6 source_set("native") { |
| 7 output_name = "egl_main_native" |
| 8 sources = [ |
| 9 "egl_native.cc", |
| 10 ] |
| 11 defines = [ |
| 12 "GLES2_CONFORM_SUPPORT_ONLY", |
| 13 "GTF_GLES20", |
| 14 "EGLAPI=", |
| 15 "EGLAPIENTRY=", |
| 16 ] |
| 17 deps = [ |
| 18 "//base", |
| 19 "//gpu/gles2_conform_support/egl", |
| 20 ] |
| 21 if (is_linux) { |
| 22 sources += [ |
| 23 "egl_native_aura.cc", |
| 24 "egl_native_x11.cc", |
| 25 ] |
| 26 } |
| 27 if (is_win) { |
| 28 sources += [ "egl_native_win.cc" ] |
| 29 } |
| 30 } |
| OLD | NEW |