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

Side by Side Diff: gpu/gpu_common.gypi

Issue 14456004: GPU client side changes for GpuMemoryBuffers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@glapi
Patch Set: Updated the extension documentation Created 7 years, 7 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
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 'chromium_code': 1, 7 'chromium_code': 1,
8 # These are defined here because we need to build this library twice. Once 8 # These are defined here because we need to build this library twice. Once
9 # with extra parameter checking. Once with no parameter checking to be 100% 9 # with extra parameter checking. Once with no parameter checking to be 100%
10 # OpenGL ES 2.0 compliant for the conformance tests. 10 # OpenGL ES 2.0 compliant for the conformance tests.
(...skipping 21 matching lines...) Expand all
32 'command_buffer/client/gles2_implementation_impl_autogen.h', 32 'command_buffer/client/gles2_implementation_impl_autogen.h',
33 'command_buffer/client/gles2_interface.h', 33 'command_buffer/client/gles2_interface.h',
34 'command_buffer/client/gles2_interface.cc', 34 'command_buffer/client/gles2_interface.cc',
35 'command_buffer/client/gles2_trace_implementation_autogen.h', 35 'command_buffer/client/gles2_trace_implementation_autogen.h',
36 'command_buffer/client/gles2_trace_implementation.cc', 36 'command_buffer/client/gles2_trace_implementation.cc',
37 'command_buffer/client/gles2_trace_implementation.h', 37 'command_buffer/client/gles2_trace_implementation.h',
38 'command_buffer/client/gles2_trace_implementation_impl_autogen.h', 38 'command_buffer/client/gles2_trace_implementation_impl_autogen.h',
39 'command_buffer/client/gpu_memory_buffer.h', 39 'command_buffer/client/gpu_memory_buffer.h',
40 'command_buffer/client/gpu_memory_buffer_factory.cc', 40 'command_buffer/client/gpu_memory_buffer_factory.cc',
41 'command_buffer/client/gpu_memory_buffer_factory.h', 41 'command_buffer/client/gpu_memory_buffer_factory.h',
42 'command_buffer/client/gpu_memory_buffer_mock.cc',
greggman 2013/05/10 00:12:22 Mocks do no belong here. They should get put in th
kaanb 2013/05/13 23:00:36 Done.
43 'command_buffer/client/gpu_memory_buffer_mock.h',
44 'command_buffer/client/gpu_memory_buffer_tracker.h',
45 'command_buffer/client/gpu_memory_buffer_tracker_in_process.cc',
46 'command_buffer/client/gpu_memory_buffer_tracker_in_process.h',
47 'command_buffer/client/gpu_memory_buffer_tracker_mock.cc',
48 'command_buffer/client/gpu_memory_buffer_tracker_mock.h',
49 'command_buffer/client/image_factory.h',
50 'command_buffer/client/image_factory_mock.cc',
51 'command_buffer/client/image_factory_mock.h',
42 'command_buffer/client/program_info_manager.cc', 52 'command_buffer/client/program_info_manager.cc',
43 'command_buffer/client/program_info_manager.h', 53 'command_buffer/client/program_info_manager.h',
44 'command_buffer/client/query_tracker.cc', 54 'command_buffer/client/query_tracker.cc',
45 'command_buffer/client/query_tracker.h', 55 'command_buffer/client/query_tracker.h',
46 'command_buffer/client/share_group.cc', 56 'command_buffer/client/share_group.cc',
47 'command_buffer/client/share_group.h', 57 'command_buffer/client/share_group.h',
48 'command_buffer/client/vertex_array_object_manager.cc', 58 'command_buffer/client/vertex_array_object_manager.cc',
49 'command_buffer/client/vertex_array_object_manager.h', 59 'command_buffer/client/vertex_array_object_manager.h',
50 ] 60 ]
51 }, 61 },
(...skipping 11 matching lines...) Expand all
63 'variables': { 73 'variables': {
64 'test_suite_name': 'gpu_unittests', 74 'test_suite_name': 'gpu_unittests',
65 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gpu_unitt ests<(SHARED_LIB_SUFFIX)', 75 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gpu_unitt ests<(SHARED_LIB_SUFFIX)',
66 }, 76 },
67 'includes': [ '../build/apk_test.gypi' ], 77 'includes': [ '../build/apk_test.gypi' ],
68 }, 78 },
69 ], 79 ],
70 }], 80 }],
71 ], 81 ],
72 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698