| 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 import("//testing/libfuzzer/fuzzer_test.gni") | 5 import("//testing/libfuzzer/fuzzer_test.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 | 8 |
| 9 config("gpu_implementation") { | 9 config("gpu_implementation") { |
| 10 defines = [ "GPU_IMPLEMENTATION" ] | 10 defines = [ "GPU_IMPLEMENTATION" ] |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 deps += [ | 210 deps += [ |
| 211 "//ui/platform_window", | 211 "//ui/platform_window", |
| 212 "//ui/platform_window:platform_impls", | 212 "//ui/platform_window:platform_impls", |
| 213 ] | 213 ] |
| 214 } | 214 } |
| 215 } | 215 } |
| 216 | 216 |
| 217 test("gpu_unittests") { | 217 test("gpu_unittests") { |
| 218 sources = [ | 218 sources = [ |
| 219 "command_buffer/client/buffer_tracker_unittest.cc", | 219 "command_buffer/client/buffer_tracker_unittest.cc", |
| 220 "command_buffer/client/client_discardable_manager_unittest.cc", |
| 220 "command_buffer/client/client_test_helper.cc", | 221 "command_buffer/client/client_test_helper.cc", |
| 221 "command_buffer/client/client_test_helper.h", | 222 "command_buffer/client/client_test_helper.h", |
| 222 "command_buffer/client/cmd_buffer_helper_test.cc", | 223 "command_buffer/client/cmd_buffer_helper_test.cc", |
| 223 "command_buffer/client/fenced_allocator_test.cc", | 224 "command_buffer/client/fenced_allocator_test.cc", |
| 224 "command_buffer/client/gles2_implementation_unittest.cc", | 225 "command_buffer/client/gles2_implementation_unittest.cc", |
| 225 "command_buffer/client/mapped_memory_unittest.cc", | 226 "command_buffer/client/mapped_memory_unittest.cc", |
| 226 "command_buffer/client/program_info_manager_unittest.cc", | 227 "command_buffer/client/program_info_manager_unittest.cc", |
| 227 "command_buffer/client/query_tracker_unittest.cc", | 228 "command_buffer/client/query_tracker_unittest.cc", |
| 228 "command_buffer/client/ring_buffer_test.cc", | 229 "command_buffer/client/ring_buffer_test.cc", |
| 229 "command_buffer/client/transfer_buffer_unittest.cc", | 230 "command_buffer/client/transfer_buffer_unittest.cc", |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 "//base/third_party/dynamic_annotations", | 461 "//base/third_party/dynamic_annotations", |
| 461 "//gpu/command_buffer/common:gles2_utils", | 462 "//gpu/command_buffer/common:gles2_utils", |
| 462 "//ui/gfx/geometry", | 463 "//ui/gfx/geometry", |
| 463 "//ui/gl", | 464 "//ui/gl", |
| 464 "//ui/gl:test_support", | 465 "//ui/gl:test_support", |
| 465 ] | 466 ] |
| 466 | 467 |
| 467 libfuzzer_options = [ "max_len=16384" ] | 468 libfuzzer_options = [ "max_len=16384" ] |
| 468 } | 469 } |
| 469 } | 470 } |
| OLD | NEW |