| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//components/viz/viz.gni") | 6 import("//components/viz/viz.gni") |
| 7 | 7 |
| 8 config("viz_service_implementation") { | 8 config("viz_service_implementation") { |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "//build/config/compiler:no_size_t_to_int_warning", | 151 "//build/config/compiler:no_size_t_to_int_warning", |
| 152 "//third_party/khronos:khronos_headers", | 152 "//third_party/khronos:khronos_headers", |
| 153 ] | 153 ] |
| 154 | 154 |
| 155 deps = [ | 155 deps = [ |
| 156 ":service", | 156 ":service", |
| 157 "//base", | 157 "//base", |
| 158 "//base/test:test_support", | 158 "//base/test:test_support", |
| 159 "//cc:test_support", | 159 "//cc:test_support", |
| 160 "//components/viz/common", | 160 "//components/viz/common", |
| 161 "//components/viz/host/hit_test", |
| 161 "//gpu/command_buffer/client", | 162 "//gpu/command_buffer/client", |
| 162 "//gpu/command_buffer/client:gles2_implementation", | 163 "//gpu/command_buffer/client:gles2_implementation", |
| 163 "//gpu/ipc:gl_in_process_context", | 164 "//gpu/ipc:gl_in_process_context", |
| 164 "//media", | 165 "//media", |
| 165 "//services/viz/hit_test/public/interfaces", | 166 "//services/viz/hit_test/public/interfaces", |
| 166 "//skia", | 167 "//skia", |
| 167 "//testing/gmock", | 168 "//testing/gmock", |
| 168 "//testing/gtest", | 169 "//testing/gtest", |
| 169 "//ui/display/types", | 170 "//ui/display/types", |
| 170 ] | 171 ] |
| 171 } | 172 } |
| 172 | 173 |
| 173 viz_source_set("perf_tests") { | 174 viz_source_set("perf_tests") { |
| 174 testonly = true | 175 testonly = true |
| 175 sources = [ | 176 sources = [ |
| 176 "display/surface_aggregator_perftest.cc", | 177 "display/surface_aggregator_perftest.cc", |
| 177 ] | 178 ] |
| 178 | 179 |
| 179 deps = [ | 180 deps = [ |
| 180 ":service", | 181 ":service", |
| 181 "//base", | 182 "//base", |
| 182 "//cc:test_support", | 183 "//cc:test_support", |
| 183 "//cc/base", | 184 "//cc/base", |
| 184 "//testing/gtest", | 185 "//testing/gtest", |
| 185 "//testing/perf", | 186 "//testing/perf", |
| 186 ] | 187 ] |
| 187 } | 188 } |
| OLD | NEW |