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