| 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 if (use_ozone) { | 359 if (use_ozone) { |
| 360 deps += [ "//ui/ozone" ] | 360 deps += [ "//ui/ozone" ] |
| 361 sources += | 361 sources += |
| 362 [ "ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap_unittest.cc" ] | 362 [ "ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap_unittest.cc" ] |
| 363 } | 363 } |
| 364 } | 364 } |
| 365 | 365 |
| 366 test("gpu_perftests") { | 366 test("gpu_perftests") { |
| 367 sources = [ | 367 sources = [ |
| 368 "perftests/measurements.cc", | 368 "perftests/measurements.cc", |
| 369 "perftests/measurements.h", |
| 369 "perftests/run_all_tests.cc", | 370 "perftests/run_all_tests.cc", |
| 370 "perftests/texture_upload_perftest.cc", | 371 "perftests/texture_upload_perftest.cc", |
| 371 ] | 372 ] |
| 372 | 373 |
| 373 deps = [ | 374 deps = [ |
| 374 "//base", | 375 "//base", |
| 375 "//base/test:test_support", | 376 "//base/test:test_support", |
| 376 "//gpu/command_buffer/service", | 377 "//gpu/command_buffer/service", |
| 377 "//testing/gmock", | 378 "//testing/gmock", |
| 378 "//testing/gtest", | 379 "//testing/gtest", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 "//base/third_party/dynamic_annotations", | 450 "//base/third_party/dynamic_annotations", |
| 450 "//gpu/command_buffer/common:gles2_utils", | 451 "//gpu/command_buffer/common:gles2_utils", |
| 451 "//ui/gfx/geometry", | 452 "//ui/gfx/geometry", |
| 452 "//ui/gl", | 453 "//ui/gl", |
| 453 "//ui/gl:test_support", | 454 "//ui/gl:test_support", |
| 454 ] | 455 ] |
| 455 | 456 |
| 456 libfuzzer_options = [ "max_len=16384" ] | 457 libfuzzer_options = [ "max_len=16384" ] |
| 457 } | 458 } |
| 458 } | 459 } |
| OLD | NEW |