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 'nacl_win64_target': 0, | 7 'nacl_win64_target': 0, |
8 'build_angle_deqp_tests%': 0, | 8 'build_angle_deqp_tests%': 0, |
9 }, | 9 }, |
10 'includes': [ | 10 'includes': [ |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 'ipc/service/gpu_channel_manager_unittest.cc', | 330 'ipc/service/gpu_channel_manager_unittest.cc', |
331 'ipc/service/gpu_channel_test_common.cc', | 331 'ipc/service/gpu_channel_test_common.cc', |
332 'ipc/service/gpu_channel_test_common.h', | 332 'ipc/service/gpu_channel_test_common.h', |
333 'ipc/service/gpu_channel_unittest.cc', | 333 'ipc/service/gpu_channel_unittest.cc', |
334 ], | 334 ], |
335 'include_dirs': [ | 335 'include_dirs': [ |
336 '../third_party/mesa/src/include', | 336 '../third_party/mesa/src/include', |
337 ], | 337 ], |
338 'conditions': [ | 338 'conditions': [ |
339 ['OS == "android"', { | 339 ['OS == "android"', { |
| 340 'dependencies': [ |
| 341 '../testing/android/native_test.gyp:native_test_native_code', |
| 342 ], |
340 'sources': [ | 343 'sources': [ |
341 'ipc/service/gpu_memory_buffer_factory_surface_texture_unittest.cc', | 344 'ipc/service/gpu_memory_buffer_factory_surface_texture_unittest.cc', |
342 ], | 345 ], |
343 }], | 346 }], |
344 ['OS == "mac"', { | 347 ['OS == "mac"', { |
345 'sources': [ | 348 'sources': [ |
346 'ipc/service/gpu_memory_buffer_factory_io_surface_unittest.cc', | 349 'ipc/service/gpu_memory_buffer_factory_io_surface_unittest.cc', |
347 ], | 350 ], |
348 }], | 351 }], |
349 ['use_ozone == 1', { | 352 ['use_ozone == 1', { |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 'command_buffer/client/gles2_interface_stub.h', | 490 'command_buffer/client/gles2_interface_stub.h', |
488 'command_buffer/service/error_state_mock.cc', | 491 'command_buffer/service/error_state_mock.cc', |
489 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 492 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
490 ], | 493 ], |
491 }, | 494 }, |
492 { | 495 { |
493 # GN version: //gpu/ipc/service:test_support | 496 # GN version: //gpu/ipc/service:test_support |
494 'target_name': 'gpu_ipc_service_test_support', | 497 'target_name': 'gpu_ipc_service_test_support', |
495 'type': 'static_library', | 498 'type': 'static_library', |
496 'dependencies': [ | 499 'dependencies': [ |
| 500 # TODO(markdittmer): Shouldn't depend on client code for server tests. |
| 501 # See crbug.com/608800. |
| 502 'gpu_ipc_client', |
497 ], | 503 ], |
498 'include_dirs': [ | 504 'include_dirs': [ |
499 '..', | 505 '..', |
500 ], | 506 ], |
501 'sources': [ | 507 'sources': [ |
502 'gpu/ipc/service/gpu_memory_buffer_factory_test_template.h', | 508 'gpu/ipc/service/gpu_memory_buffer_factory_test_template.h', |
503 ], | 509 ], |
504 }, | 510 }, |
505 { | 511 { |
506 # GN version: //gpu:command_buffer_gles2 | 512 # GN version: //gpu:command_buffer_gles2 |
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1148 ], | 1154 ], |
1149 'sources': [ | 1155 'sources': [ |
1150 'gpu_unittests_apk.isolate', | 1156 'gpu_unittests_apk.isolate', |
1151 ], | 1157 ], |
1152 }, | 1158 }, |
1153 ], | 1159 ], |
1154 }, | 1160 }, |
1155 ], | 1161 ], |
1156 ], | 1162 ], |
1157 } | 1163 } |
OLD | NEW |