OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 # GYP version: gpu/gles2_conform_support/gles2_conform_support.gyp:egl_main_nati
ve | 5 # GYP version: gpu/gles2_conform_support/gles2_conform_support.gyp:egl_main_nati
ve |
6 source_set("native") { | 6 source_set("native") { |
7 output_name = "egl_main_native" | 7 output_name = "egl_main_native" |
8 sources = [ | 8 sources = [ |
9 "egl_native.cc", | 9 "egl_native.cc", |
10 "main.cc", | 10 "main.cc", |
11 ] | 11 ] |
12 defines = [ | 12 defines = [ |
13 "GLES2_CONFORM_SUPPORT_ONLY", | 13 "GLES2_CONFORM_SUPPORT_ONLY", |
14 "GTF_GLES20", | 14 "GTF_GLES20", |
15 "EGLAPI=", | 15 "EGLAPI=", |
16 "EGLAPIENTRY=", | 16 "EGLAPIENTRY=", |
17 ] | 17 ] |
18 deps = [ | 18 deps = [ |
| 19 ":windowless", |
19 "//base", | 20 "//base", |
20 "//gpu/gles2_conform_support/egl", | 21 "//gpu/gles2_conform_support/egl", |
21 "//ui/gl", | 22 "//ui/gl", |
22 ] | 23 ] |
23 if (is_linux) { | 24 if (is_linux) { |
24 sources += [ | 25 sources += [ |
25 "egl_native_aura.cc", | 26 "egl_native_aura.cc", |
26 "egl_native_x11.cc", | 27 "egl_native_x11.cc", |
27 ] | 28 ] |
28 } | 29 } |
(...skipping 15 matching lines...) Expand all Loading... |
44 "GTF_GLES20", | 45 "GTF_GLES20", |
45 "EGLAPI=", | 46 "EGLAPI=", |
46 "EGLAPIENTRY=", | 47 "EGLAPIENTRY=", |
47 ] | 48 ] |
48 deps = [ | 49 deps = [ |
49 "//base", | 50 "//base", |
50 "//gpu/gles2_conform_support/egl", | 51 "//gpu/gles2_conform_support/egl", |
51 "//ui/gl", | 52 "//ui/gl", |
52 ] | 53 ] |
53 } | 54 } |
OLD | NEW |