| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 "gles2_conform_test_expectations.txt", | 189 "gles2_conform_test_expectations.txt", |
| 190 ] | 190 ] |
| 191 | 191 |
| 192 if (internal_gles2_conform_tests) { | 192 if (internal_gles2_conform_tests) { |
| 193 data_deps = [ | 193 data_deps = [ |
| 194 ":gles2_conform_test_windowless", | 194 ":gles2_conform_test_windowless", |
| 195 ] | 195 ] |
| 196 deps += [ ":generate_gles2_conform_tests" ] | 196 deps += [ ":generate_gles2_conform_tests" ] |
| 197 sources += [ "$target_gen_dir/gles2_conform_test_autogen.cc" ] | 197 sources += [ "$target_gen_dir/gles2_conform_test_autogen.cc" ] |
| 198 data += [ "//third_party/gles2_conform/GTF_ES/" ] | 198 data += [ "//third_party/gles2_conform/GTF_ES/" ] |
| 199 | |
| 200 # 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 } | 199 } |
| 203 } | 200 } |
| OLD | NEW |