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

Side by Side Diff: gpu/gpu.gyp

Issue 15745014: Move GPU device/driver info related code from content to gpu. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase 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 | Annotate | Revision Log
« no previous file with comments | « gpu/config/software_rendering_list_json.cc ('k') | gpu/gpu_config.gypi » ('j') | 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 'command_buffer/service/stream_texture_mock.cc', 199 'command_buffer/service/stream_texture_mock.cc',
200 'command_buffer/service/stream_texture_mock.h', 200 'command_buffer/service/stream_texture_mock.h',
201 'command_buffer/service/stream_texture_manager_mock.cc', 201 'command_buffer/service/stream_texture_manager_mock.cc',
202 'command_buffer/service/stream_texture_manager_mock.h', 202 'command_buffer/service/stream_texture_manager_mock.h',
203 'command_buffer/service/test_helper.cc', 203 'command_buffer/service/test_helper.cc',
204 'command_buffer/service/test_helper.h', 204 'command_buffer/service/test_helper.h',
205 'command_buffer/service/texture_manager_unittest.cc', 205 'command_buffer/service/texture_manager_unittest.cc',
206 'command_buffer/service/transfer_buffer_manager_unittest.cc', 206 'command_buffer/service/transfer_buffer_manager_unittest.cc',
207 'command_buffer/service/vertex_attrib_manager_unittest.cc', 207 'command_buffer/service/vertex_attrib_manager_unittest.cc',
208 'command_buffer/service/vertex_array_manager_unittest.cc', 208 'command_buffer/service/vertex_array_manager_unittest.cc',
209 'config/gpu_blacklist_unittest.cc',
210 'config/gpu_control_list_entry_unittest.cc',
211 'config/gpu_control_list_machine_model_info_unittest.cc',
212 'config/gpu_control_list_number_info_unittest.cc',
213 'config/gpu_control_list_os_info_unittest.cc',
214 'config/gpu_control_list_string_info_unittest.cc',
215 'config/gpu_control_list_unittest.cc',
216 'config/gpu_control_list_version_info_unittest.cc',
217 'config/gpu_driver_bug_list_unittest.cc',
218 'config/gpu_info_collector_unittest.cc',
219 'config/gpu_info_unittest.cc',
220 'config/gpu_switching_list_unittest.cc',
221 'config/gpu_util_unittest.cc',
209 ], 222 ],
210 'conditions': [ 223 'conditions': [
211 ['OS == "android" and gtest_target_type == "shared_library"', { 224 ['OS == "android" and gtest_target_type == "shared_library"', {
212 'dependencies': [ 225 'dependencies': [
213 '../testing/android/native_test.gyp:native_test_native_code', 226 '../testing/android/native_test.gyp:native_test_native_code',
214 ], 227 ],
215 }], 228 }],
216 ], 229 ],
217 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 230 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
218 'msvs_disabled_warnings': [ 4267, ], 231 'msvs_disabled_warnings': [ 4267, ],
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 'includes': [ '../build/protoc.gypi' ], 326 'includes': [ '../build/protoc.gypi' ],
314 }, 327 },
315 { 328 {
316 'target_name': 'gpu', 329 'target_name': 'gpu',
317 'type': 'none', 330 'type': 'none',
318 'dependencies': [ 331 'dependencies': [
319 'command_buffer_client', 332 'command_buffer_client',
320 'command_buffer_common', 333 'command_buffer_common',
321 'command_buffer_service', 334 'command_buffer_service',
322 'gles2_cmd_helper', 335 'gles2_cmd_helper',
336 'gpu_config',
323 'gpu_ipc', 337 'gpu_ipc',
324 ], 338 ],
325 'sources': [ 339 'sources': [
326 'gpu_export.h', 340 'gpu_export.h',
327 ], 341 ],
328 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 342 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
329 'msvs_disabled_warnings': [4267, ], 343 'msvs_disabled_warnings': [4267, ],
330 }, 344 },
331 { 345 {
332 'target_name': 'command_buffer_common', 346 'target_name': 'command_buffer_common',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 { 397 {
384 'target_name': 'gpu_ipc', 398 'target_name': 'gpu_ipc',
385 'type': 'static_library', 399 'type': 'static_library',
386 'includes': [ 400 'includes': [
387 'gpu_ipc.gypi', 401 'gpu_ipc.gypi',
388 ], 402 ],
389 'dependencies': [ 403 'dependencies': [
390 'command_buffer_common', 404 'command_buffer_common',
391 ], 405 ],
392 }, 406 },
407 {
408 'target_name': 'gpu_config',
409 'type': 'static_library',
410 'includes': [
411 'gpu_config.gypi',
412 ],
413 },
393 ], 414 ],
394 }, 415 },
395 { # component != static_library 416 { # component != static_library
396 'targets': [ 417 'targets': [
397 { 418 {
398 'target_name': 'disk_cache_proto', 419 'target_name': 'disk_cache_proto',
399 'type': 'static_library', 420 'type': 'static_library',
400 'sources': [ 'command_buffer/service/disk_cache_proto.proto' ], 421 'sources': [ 'command_buffer/service/disk_cache_proto.proto' ],
401 'variables': { 422 'variables': {
402 'proto_in_dir': 'command_buffer/service', 423 'proto_in_dir': 'command_buffer/service',
403 'proto_out_dir': 'gpu/command_buffer/service', 424 'proto_out_dir': 'gpu/command_buffer/service',
404 }, 425 },
405 'includes': [ '../build/protoc.gypi' ], 426 'includes': [ '../build/protoc.gypi' ],
406 }, 427 },
407 { 428 {
408 'target_name': 'gpu', 429 'target_name': 'gpu',
409 'type': 'shared_library', 430 'type': 'shared_library',
410 'includes': [ 431 'includes': [
411 'command_buffer_client.gypi', 432 'command_buffer_client.gypi',
412 'command_buffer_common.gypi', 433 'command_buffer_common.gypi',
413 'command_buffer_service.gypi', 434 'command_buffer_service.gypi',
414 'gles2_cmd_helper.gypi', 435 'gles2_cmd_helper.gypi',
436 'gpu_config.gypi',
415 'gpu_ipc.gypi', 437 'gpu_ipc.gypi',
416 ], 438 ],
417 'defines': [ 439 'defines': [
418 'GPU_IMPLEMENTATION', 440 'GPU_IMPLEMENTATION',
419 ], 441 ],
420 'sources': [ 442 'sources': [
421 'gpu_export.h', 443 'gpu_export.h',
422 ], 444 ],
423 'dependencies': [ 445 'dependencies': [
424 '../base/base.gyp:base', 446 '../base/base.gyp:base',
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests< (SHARED_LIB_SUFFIX)', 530 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests< (SHARED_LIB_SUFFIX)',
509 }, 531 },
510 'includes': [ 532 'includes': [
511 '../build/apk_test.gypi', 533 '../build/apk_test.gypi',
512 ], 534 ],
513 }, 535 },
514 ], 536 ],
515 }], 537 }],
516 ], 538 ],
517 } 539 }
OLDNEW
« no previous file with comments | « gpu/config/software_rendering_list_json.cc ('k') | gpu/gpu_config.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698