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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ] | 100 configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ] |
101 } | 101 } |
102 } | 102 } |
103 | 103 |
104 static_library("test_support") { | 104 static_library("test_support") { |
105 testonly = true | 105 testonly = true |
106 sources = [ | 106 sources = [ |
107 "command_buffer/client/gles2_interface_stub.cc", | 107 "command_buffer/client/gles2_interface_stub.cc", |
108 "command_buffer/client/gles2_interface_stub.h", | 108 "command_buffer/client/gles2_interface_stub.h", |
109 "command_buffer/service/error_state_mock.cc", | 109 "command_buffer/service/error_state_mock.cc", |
| 110 "command_buffer/service/error_state_mock.h", |
110 "command_buffer/service/gles2_cmd_decoder_mock.cc", | 111 "command_buffer/service/gles2_cmd_decoder_mock.cc", |
| 112 "command_buffer/service/gles2_cmd_decoder_mock.h", |
111 "test_message_loop_type.h", | 113 "test_message_loop_type.h", |
112 ] | 114 ] |
113 | 115 |
114 public_deps = [ | 116 public_deps = [ |
115 ":gpu", | 117 ":gpu", |
116 "//gpu/command_buffer/client:gles2_interface", | 118 "//gpu/command_buffer/client:gles2_interface", |
117 ] | 119 ] |
118 deps = [ | 120 deps = [ |
119 "//testing/gmock", | 121 "//testing/gmock", |
120 "//testing/gtest", | 122 "//testing/gtest", |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 "//base/third_party/dynamic_annotations", | 453 "//base/third_party/dynamic_annotations", |
452 "//gpu/command_buffer/common:gles2_utils", | 454 "//gpu/command_buffer/common:gles2_utils", |
453 "//ui/gfx/geometry", | 455 "//ui/gfx/geometry", |
454 "//ui/gl", | 456 "//ui/gl", |
455 "//ui/gl:test_support", | 457 "//ui/gl:test_support", |
456 ] | 458 ] |
457 | 459 |
458 libfuzzer_options = [ "max_len=16384" ] | 460 libfuzzer_options = [ "max_len=16384" ] |
459 } | 461 } |
460 } | 462 } |
OLD | NEW |