Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: gpu/gpu.gyp

Issue 12210078: Make gpu_unittests build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'nacl_win64_target': 0, 7 'nacl_win64_target': 0,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'gpu_common.gypi', 10 'gpu_common.gypi',
(...skipping 30 matching lines...) Expand all
41 'dependencies': [ 41 'dependencies': [
42 '../base/base.gyp:base', 42 '../base/base.gyp:base',
43 '../third_party/khronos/khronos.gyp:khronos_headers', 43 '../third_party/khronos/khronos.gyp:khronos_headers',
44 '../ui/gl/gl.gyp:gl', 44 '../ui/gl/gl.gyp:gl',
45 'command_buffer/command_buffer.gyp:gles2_utils', 45 'command_buffer/command_buffer.gyp:gles2_utils',
46 'gles2_cmd_helper', 46 'gles2_cmd_helper',
47 ], 47 ],
48 'sources': [ 48 'sources': [
49 '<@(gles2_implementation_source_files)', 49 '<@(gles2_implementation_source_files)',
50 ], 50 ],
51 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
52 'msvs_disabled_warnings': [ 4267, ],
51 }, 53 },
52 { 54 {
53 # Library emulates GLES2 using command_buffers. 55 # Library emulates GLES2 using command_buffers.
54 'target_name': 'gles2_implementation_client_side_arrays_no_check', 56 'target_name': 'gles2_implementation_client_side_arrays_no_check',
55 'type': '<(component)', 57 'type': '<(component)',
56 'defines': [ 58 'defines': [
57 'GLES2_IMPL_IMPLEMENTATION', 59 'GLES2_IMPL_IMPLEMENTATION',
58 'GLES2_SUPPORT_CLIENT_SIDE_ARRAYS=1', 60 'GLES2_SUPPORT_CLIENT_SIDE_ARRAYS=1',
59 'GLES2_CONFORMANCE_TESTS=1', 61 'GLES2_CONFORMANCE_TESTS=1',
60 ], 62 ],
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 'command_buffer/service/vertex_attrib_manager_unittest.cc', 205 'command_buffer/service/vertex_attrib_manager_unittest.cc',
204 'command_buffer/service/vertex_array_manager_unittest.cc', 206 'command_buffer/service/vertex_array_manager_unittest.cc',
205 ], 207 ],
206 'conditions': [ 208 'conditions': [
207 ['OS == "android" and gtest_target_type == "shared_library"', { 209 ['OS == "android" and gtest_target_type == "shared_library"', {
208 'dependencies': [ 210 'dependencies': [
209 '../testing/android/native_test.gyp:native_test_native_code', 211 '../testing/android/native_test.gyp:native_test_native_code',
210 ], 212 ],
211 }], 213 }],
212 ], 214 ],
215 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
216 'msvs_disabled_warnings': [ 4267, ],
213 }, 217 },
214 { 218 {
215 'target_name': 'gl_tests', 219 'target_name': 'gl_tests',
216 'type': 'executable', 220 'type': 'executable',
217 'dependencies': [ 221 'dependencies': [
218 '../base/base.gyp:base', 222 '../base/base.gyp:base',
219 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 223 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
220 '../testing/gmock.gyp:gmock', 224 '../testing/gmock.gyp:gmock',
221 '../testing/gtest.gyp:gtest', 225 '../testing/gtest.gyp:gtest',
222 '../third_party/angle/src/build_angle.gyp:translator_glsl', 226 '../third_party/angle/src/build_angle.gyp:translator_glsl',
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 'configurations': { 441 'configurations': {
438 'Common_Base': { 442 'Common_Base': {
439 'msvs_target_platform': 'x64', 443 'msvs_target_platform': 'x64',
440 }, 444 },
441 }, 445 },
442 }, 446 },
443 ], 447 ],
444 }], 448 }],
445 ], 449 ],
446 } 450 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698