| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 { | 5 { |
| 6 | 6 |
| 7 'includes': [ | 7 'includes': [ |
| 8 'gles2_conform.gypi', | 8 'gles2_conform.gypi', |
| 9 ], | 9 ], |
| 10 'target_defaults': { | 10 'target_defaults': { |
| 11 'msvs_disabled_warnings': [4005, 4013, 4018, 4101, 4716], | 11 'msvs_disabled_warnings': [4005, 4013, 4018, 4101, 4716], |
| 12 'include_dirs': [ | 12 'include_dirs': [ |
| 13 '<(SHARED_INTERMEDIATE_DIR)/gles2_conform_test_embedded_data', | 13 '<(SHARED_INTERMEDIATE_DIR)/gles2_conform_test_embedded_data', |
| 14 '../../third_party/gles2_conform/GTF_ES/glsl/GTF/Source', | 14 '../../third_party/gles2_conform/GTF_ES/glsl/GTF/Source', |
| 15 ], | 15 ], |
| 16 'variables': { |
| 17 'clang_warning_flags': [ |
| 18 # GTFVecBase.h contains static no-inline functions in a header :-/ |
| 19 '-Wno-unused-function', |
| 20 ], |
| 21 }, |
| 16 }, | 22 }, |
| 17 'targets': [ | 23 'targets': [ |
| 18 { | 24 { |
| 19 'target_name': 'gles2_conform_test', | 25 'target_name': 'gles2_conform_test', |
| 20 'type': 'executable', | 26 'type': 'executable', |
| 21 'dependencies': [ | 27 'dependencies': [ |
| 22 '<(DEPTH)/base/base.gyp:base', | 28 '<(DEPTH)/base/base.gyp:base', |
| 23 '<(DEPTH)/gpu/gpu.gyp:gpu', | 29 '<(DEPTH)/gpu/gpu.gyp:gpu', |
| 24 '<(DEPTH)/testing/gtest.gyp:gtest', | 30 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 25 ], | 31 ], |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 }], | 257 }], |
| 252 ], | 258 ], |
| 253 } | 259 } |
| 254 | 260 |
| 255 | 261 |
| 256 # Local Variables: | 262 # Local Variables: |
| 257 # tab-width:2 | 263 # tab-width:2 |
| 258 # indent-tabs-mode:nil | 264 # indent-tabs-mode:nil |
| 259 # End: | 265 # End: |
| 260 # vim: set expandtab tabstop=2 shiftwidth=2: | 266 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |