Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: gpu/BUILD.gn

Issue 2778153002: Add missing header files to GN files (Closed)
Patch Set: manual fix for CrOS Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 if (use_ozone) { 363 if (use_ozone) {
364 deps += [ "//ui/ozone" ] 364 deps += [ "//ui/ozone" ]
365 sources += 365 sources +=
366 [ "ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap_unittest.cc" ] 366 [ "ipc/client/gpu_memory_buffer_impl_ozone_native_pixmap_unittest.cc" ]
367 } 367 }
368 } 368 }
369 369
370 test("gpu_perftests") { 370 test("gpu_perftests") {
371 sources = [ 371 sources = [
372 "perftests/measurements.cc", 372 "perftests/measurements.cc",
373 "perftests/measurements.h",
373 "perftests/run_all_tests.cc", 374 "perftests/run_all_tests.cc",
374 "perftests/texture_upload_perftest.cc", 375 "perftests/texture_upload_perftest.cc",
375 ] 376 ]
376 377
377 deps = [ 378 deps = [
378 "//base", 379 "//base",
379 "//base/test:test_support", 380 "//base/test:test_support",
380 "//gpu/command_buffer/service", 381 "//gpu/command_buffer/service",
381 "//testing/gmock", 382 "//testing/gmock",
382 "//testing/gtest", 383 "//testing/gtest",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 "//base/third_party/dynamic_annotations", 454 "//base/third_party/dynamic_annotations",
454 "//gpu/command_buffer/common:gles2_utils", 455 "//gpu/command_buffer/common:gles2_utils",
455 "//ui/gfx/geometry", 456 "//ui/gfx/geometry",
456 "//ui/gl", 457 "//ui/gl",
457 "//ui/gl:test_support", 458 "//ui/gl:test_support",
458 ] 459 ]
459 460
460 libfuzzer_options = [ "max_len=16384" ] 461 libfuzzer_options = [ "max_len=16384" ]
461 } 462 }
462 } 463 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698