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

Side by Side Diff: gpu/gpu.gyp

Issue 6346007: Refactor and improve gpu_info_collector: collect information on linux;... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: This should turn three trybots green Created 9 years, 11 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 | « chrome/gpu/gpu_info_unittest_win.cc ('k') | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 'target_name': 'gpu_unittests', 209 'target_name': 'gpu_unittests',
210 'type': 'executable', 210 'type': 'executable',
211 'dependencies': [ 211 'dependencies': [
212 '../app/app.gyp:app_base', 212 '../app/app.gyp:app_base',
213 '../testing/gmock.gyp:gmock', 213 '../testing/gmock.gyp:gmock',
214 '../testing/gmock.gyp:gmock_main', 214 '../testing/gmock.gyp:gmock_main',
215 '../testing/gtest.gyp:gtest', 215 '../testing/gtest.gyp:gtest',
216 'command_buffer_client', 216 'command_buffer_client',
217 'command_buffer_common', 217 'command_buffer_common',
218 'command_buffer_service', 218 'command_buffer_service',
219 'gpu_unittest_utils',
219 'gles2_lib', 220 'gles2_lib',
220 'gles2_implementation', 221 'gles2_implementation',
221 'gles2_cmd_helper', 222 'gles2_cmd_helper',
222 ], 223 ],
223 'sources': [ 224 'sources': [
224 'command_buffer/client/cmd_buffer_helper_test.cc', 225 'command_buffer/client/cmd_buffer_helper_test.cc',
225 'command_buffer/client/fenced_allocator_test.cc', 226 'command_buffer/client/fenced_allocator_test.cc',
226 'command_buffer/client/gles2_implementation_unittest.cc', 227 'command_buffer/client/gles2_implementation_unittest.cc',
227 'command_buffer/client/mapped_memory_unittest.cc', 228 'command_buffer/client/mapped_memory_unittest.cc',
228 'command_buffer/client/ring_buffer_test.cc', 229 'command_buffer/client/ring_buffer_test.cc',
229 'command_buffer/common/bitfield_helpers_test.cc', 230 'command_buffer/common/bitfield_helpers_test.cc',
230 'command_buffer/common/command_buffer_mock.cc', 231 'command_buffer/common/command_buffer_mock.cc',
231 'command_buffer/common/command_buffer_mock.h', 232 'command_buffer/common/command_buffer_mock.h',
232 'command_buffer/common/gl_mock.h',
233 'command_buffer/common/gl_mock.cc',
234 'command_buffer/common/gles2_cmd_format_test.cc', 233 'command_buffer/common/gles2_cmd_format_test.cc',
235 'command_buffer/common/gles2_cmd_format_test_autogen.h', 234 'command_buffer/common/gles2_cmd_format_test_autogen.h',
236 'command_buffer/common/gles2_cmd_id_test.cc', 235 'command_buffer/common/gles2_cmd_id_test.cc',
237 'command_buffer/common/gles2_cmd_id_test_autogen.h', 236 'command_buffer/common/gles2_cmd_id_test_autogen.h',
238 'command_buffer/common/gles2_cmd_format_test.cc', 237 'command_buffer/common/gles2_cmd_format_test.cc',
239 'command_buffer/common/gles2_cmd_format_test_autogen.h', 238 'command_buffer/common/gles2_cmd_format_test_autogen.h',
240 'command_buffer/common/gles2_cmd_id_test.cc', 239 'command_buffer/common/gles2_cmd_id_test.cc',
241 'command_buffer/common/gles2_cmd_id_test_autogen.h', 240 'command_buffer/common/gles2_cmd_id_test_autogen.h',
242 'command_buffer/common/gles2_cmd_format_test.cc', 241 'command_buffer/common/gles2_cmd_format_test.cc',
243 'command_buffer/common/gles2_cmd_format_test_autogen.h', 242 'command_buffer/common/gles2_cmd_format_test_autogen.h',
(...skipping 22 matching lines...) Expand all
266 'command_buffer/service/program_manager_unittest.cc', 265 'command_buffer/service/program_manager_unittest.cc',
267 'command_buffer/service/renderbuffer_manager_unittest.cc', 266 'command_buffer/service/renderbuffer_manager_unittest.cc',
268 'command_buffer/service/shader_manager_unittest.cc', 267 'command_buffer/service/shader_manager_unittest.cc',
269 'command_buffer/service/shader_translator_unittest.cc', 268 'command_buffer/service/shader_translator_unittest.cc',
270 'command_buffer/service/test_helper.h', 269 'command_buffer/service/test_helper.h',
271 'command_buffer/service/test_helper.cc', 270 'command_buffer/service/test_helper.cc',
272 'command_buffer/service/texture_manager_unittest.cc', 271 'command_buffer/service/texture_manager_unittest.cc',
273 ], 272 ],
274 }, 273 },
275 { 274 {
275 'target_name': 'gpu_unittest_utils',
276 'type': 'static_library',
277 'dependencies': [
278 '../app/app.gyp:app_base',
279 '../testing/gmock.gyp:gmock',
280 '../testing/gtest.gyp:gtest',
281 ],
282 'include_dirs': [
283 '..',
284 ],
285 'sources': [
286 'command_buffer/common/gl_mock.h',
287 'command_buffer/common/gl_mock.cc',
288 ],
289 },
290 {
276 'target_name': 'gles2_demo_lib', 291 'target_name': 'gles2_demo_lib',
277 'type': 'static_library', 292 'type': 'static_library',
278 'dependencies': [ 293 'dependencies': [
279 'command_buffer_client', 294 'command_buffer_client',
280 'gles2_lib', 295 'gles2_lib',
281 'gles2_c_lib', 296 'gles2_c_lib',
282 ], 297 ],
283 'sources': [ 298 'sources': [
284 'command_buffer/client/gles2_demo_c.h', 299 'command_buffer/client/gles2_demo_c.h',
285 'command_buffer/client/gles2_demo_c.c', 300 'command_buffer/client/gles2_demo_c.c',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 }, 354 },
340 ], 355 ],
341 ], 356 ],
342 } 357 }
343 358
344 # Local Variables: 359 # Local Variables:
345 # tab-width:2 360 # tab-width:2
346 # indent-tabs-mode:nil 361 # indent-tabs-mode:nil
347 # End: 362 # End:
348 # vim: set expandtab tabstop=2 shiftwidth=2: 363 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/gpu/gpu_info_unittest_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698