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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 "//net:test_support", | 350 "//net:test_support", |
351 "//testing/gmock", | 351 "//testing/gmock", |
352 "//testing/gtest", | 352 "//testing/gtest", |
353 "//third_party/angle:translator", | 353 "//third_party/angle:translator", |
354 "//ui/gfx", | 354 "//ui/gfx", |
355 "//ui/gfx:test_support", | 355 "//ui/gfx:test_support", |
356 "//ui/gfx/geometry", | 356 "//ui/gfx/geometry", |
357 "//ui/gl", | 357 "//ui/gl", |
358 "//ui/gl:gl_unittest_utils", | 358 "//ui/gl:gl_unittest_utils", |
359 "//ui/gl:test_support", | 359 "//ui/gl:test_support", |
| 360 "//ui/latency:test_support", |
360 ] | 361 ] |
361 | 362 |
362 if (is_android) { | 363 if (is_android) { |
363 deps += [ | 364 deps += [ |
364 "//ui/android:ui_java", | 365 "//ui/android:ui_java", |
365 "//ui/gl:gl_jni_headers", | 366 "//ui/gl:gl_jni_headers", |
366 ] | 367 ] |
367 } | 368 } |
368 | 369 |
369 if (use_ozone) { | 370 if (use_ozone) { |
(...skipping 90 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 |