Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # These are defined here because we want to be able to compile them on | 8 # These are defined here because we want to be able to compile them on |
| 9 # the buildbots without needed the OpenGL ES 2.0 conformance tests | 9 # the buildbots without needed the OpenGL ES 2.0 conformance tests |
| 10 # which are not open source. | 10 # which are not open source. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 53 'egl/surface.cc', | 53 'egl/surface.cc', |
| 54 'egl/surface.h', | 54 'egl/surface.h', |
| 55 ], | 55 ], |
| 56 'defines': [ | 56 'defines': [ |
| 57 'EGLAPI=', | 57 'EGLAPI=', |
| 58 'EGLAPIENTRY=', | 58 'EGLAPIENTRY=', |
| 59 ], | 59 ], |
| 60 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 60 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 61 'msvs_disabled_warnings': [ 4267, ], | 61 'msvs_disabled_warnings': [ 4267, ], |
| 62 }, | 62 }, |
| 63 # GN version: //gpu/gles2_conform_support/native | |
|
Dirk Pranke
2015/03/08 21:02:29
generally we put the comment right above the 'targ
| |
| 63 { | 64 { |
| 64 'target_name': 'egl_main_native', | 65 'target_name': 'egl_main_native', |
| 65 'type': 'static_library', | 66 'type': 'static_library', |
| 66 'dependencies': [ | 67 'dependencies': [ |
| 67 'egl_native', | 68 'egl_native', |
| 68 '../../third_party/khronos/khronos.gyp:khronos_headers', | 69 '../../third_party/khronos/khronos.gyp:khronos_headers', |
| 69 ], | 70 ], |
| 70 'sources': [ | 71 'sources': [ |
| 71 '<@(bootstrap_sources_native)', | 72 '<@(bootstrap_sources_native)', |
| 72 ], | 73 ], |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 120 'EGLAPI=', | 121 'EGLAPI=', |
| 121 'EGLAPIENTRY=', | 122 'EGLAPIENTRY=', |
| 122 ], | 123 ], |
| 123 'sources': [ | 124 'sources': [ |
| 124 '<@(bootstrap_sources_native)', | 125 '<@(bootstrap_sources_native)', |
| 125 'gles2_conform_support.c' | 126 'gles2_conform_support.c' |
| 126 ], | 127 ], |
| 127 }, | 128 }, |
| 128 ], | 129 ], |
| 129 } | 130 } |
| OLD | NEW |