OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # GYP-to-GN project mappings: | 5 # GYP-to-GN project mappings: |
6 # | 6 # |
7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client | 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client |
8 # | 8 # |
9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common | 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common |
10 # | 10 # |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 "config/gpu_info_collector_unittest.cc", | 324 "config/gpu_info_collector_unittest.cc", |
325 "config/gpu_info_unittest.cc", | 325 "config/gpu_info_unittest.cc", |
326 "config/gpu_test_config_unittest.cc", | 326 "config/gpu_test_config_unittest.cc", |
327 "config/gpu_test_expectations_parser_unittest.cc", | 327 "config/gpu_test_expectations_parser_unittest.cc", |
328 "config/gpu_util_unittest.cc", | 328 "config/gpu_util_unittest.cc", |
329 "ipc/client/gpu_memory_buffer_impl_shared_memory_unittest.cc", | 329 "ipc/client/gpu_memory_buffer_impl_shared_memory_unittest.cc", |
330 "ipc/client/gpu_memory_buffer_impl_test_template.h", | 330 "ipc/client/gpu_memory_buffer_impl_test_template.h", |
331 "ipc/common/struct_traits_unittest.cc", | 331 "ipc/common/struct_traits_unittest.cc", |
332 ] | 332 ] |
333 | 333 |
334 if (is_android) { | |
335 sources += | |
336 [ "ipc/client/gpu_memory_buffer_impl_surface_texture_unittest.cc" ] | |
337 } | |
338 | |
339 if (is_mac) { | 334 if (is_mac) { |
340 sources += [ "ipc/client/gpu_memory_buffer_impl_io_surface_unittest.cc" ] | 335 sources += [ "ipc/client/gpu_memory_buffer_impl_io_surface_unittest.cc" ] |
341 } | 336 } |
342 | 337 |
343 configs += [ | 338 configs += [ |
344 "//build/config:precompiled_headers", | 339 "//build/config:precompiled_headers", |
345 | 340 |
346 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 341 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
347 "//build/config/compiler:no_size_t_to_int_warning", | 342 "//build/config/compiler:no_size_t_to_int_warning", |
348 ] | 343 ] |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 "//ui/gfx/geometry", | 416 "//ui/gfx/geometry", |
422 "//ui/gl", | 417 "//ui/gl", |
423 "//ui/gl:test_support", | 418 "//ui/gl:test_support", |
424 ] | 419 ] |
425 | 420 |
426 libfuzzer_options = [ | 421 libfuzzer_options = [ |
427 "max_len=16384", | 422 "max_len=16384", |
428 "use_traces=1", | 423 "use_traces=1", |
429 ] | 424 ] |
430 } | 425 } |
OLD | NEW |