| 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 declare_args() { | 5 declare_args() { |
| 6 # Set to true to compile with the OpenGL ES 2.0 conformance tests. | 6 # Set to true to compile with the OpenGL ES 2.0 conformance tests. |
| 7 internal_gles2_conform_tests = false | 7 internal_gles2_conform_tests = false |
| 8 } | 8 } |
| 9 | 9 |
| 10 config("gles2_conform_test_warnings") { | 10 config("gles2_conform_test_warnings") { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 defines = [ | 50 defines = [ |
| 51 "GLES2_CONFORM_SUPPORT_ONLY", | 51 "GLES2_CONFORM_SUPPORT_ONLY", |
| 52 "GTF_GLES20", | 52 "GTF_GLES20", |
| 53 "EGLAPI=", | 53 "EGLAPI=", |
| 54 "EGLAPIENTRY=", | 54 "EGLAPIENTRY=", |
| 55 ] | 55 ] |
| 56 deps = [ | 56 deps = [ |
| 57 "//base", | 57 "//base", |
| 58 "//base/third_party/dynamic_annotations", | 58 "//base/third_party/dynamic_annotations", |
| 59 "//build/config/sanitizers:deps", | 59 "//build/config/sanitizers:deps", |
| 60 "//build/win:default_exe_manifest", |
| 60 "//gpu/command_buffer/client:gles2_c_lib_nocheck", | 61 "//gpu/command_buffer/client:gles2_c_lib_nocheck", |
| 61 "//gpu/gles2_conform_support/egl", | 62 "//gpu/gles2_conform_support/egl", |
| 62 "//ui/gl", | 63 "//ui/gl", |
| 63 ] | 64 ] |
| 64 if (is_linux) { | 65 if (is_linux) { |
| 65 sources += [ | 66 sources += [ |
| 66 "native/egl_native_aura.cc", | 67 "native/egl_native_aura.cc", |
| 67 "native/egl_native_x11.cc", | 68 "native/egl_native_x11.cc", |
| 68 ] | 69 ] |
| 69 } | 70 } |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 ":gles2_conform_test_windowless", | 195 ":gles2_conform_test_windowless", |
| 195 ] | 196 ] |
| 196 deps += [ ":generate_gles2_conform_tests" ] | 197 deps += [ ":generate_gles2_conform_tests" ] |
| 197 sources += [ "$target_gen_dir/gles2_conform_test_autogen.cc" ] | 198 sources += [ "$target_gen_dir/gles2_conform_test_autogen.cc" ] |
| 198 data += [ "//third_party/gles2_conform/GTF_ES/" ] | 199 data += [ "//third_party/gles2_conform/GTF_ES/" ] |
| 199 | 200 |
| 200 # TODO: Make these tests pull in the correct data dependencies once they | 201 # TODO: Make these tests pull in the correct data dependencies once they |
| 201 # are exported in GN. Maybe from //third_party/gles2_conform/GTF_ES/ | 202 # are exported in GN. Maybe from //third_party/gles2_conform/GTF_ES/ |
| 202 } | 203 } |
| 203 } | 204 } |
| OLD | NEW |