Chromium Code Reviews| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 146 "//build/config/compiler:no_size_t_to_int_warning", | 146 "//build/config/compiler:no_size_t_to_int_warning", |
| 147 "//third_party/khronos:khronos_headers", | 147 "//third_party/khronos:khronos_headers", |
| 148 ] | 148 ] |
| 149 | 149 |
| 150 deps = [ | 150 deps = [ |
| 151 ":service", | 151 ":service", |
| 152 "//base", | 152 "//base", |
| 153 "//base/test:test_support", | 153 "//base/test:test_support", |
| 154 "//cc:test_support", | 154 "//cc:test_support", |
| 155 "//components/viz/common", | 155 "//components/viz/common", |
| 156 "//components/viz/host/hit_test:hit_test", | |
|
sadrul
2017/07/19 15:40:08
Don't need the bits after :
riajiang
2017/07/19 17:45:55
Done.
| |
| 156 "//gpu/command_buffer/client", | 157 "//gpu/command_buffer/client", |
| 157 "//gpu/command_buffer/client:gles2_implementation", | 158 "//gpu/command_buffer/client:gles2_implementation", |
| 158 "//gpu/ipc:gl_in_process_context", | 159 "//gpu/ipc:gl_in_process_context", |
| 159 "//media", | 160 "//media", |
| 160 "//services/viz/hit_test/public/interfaces", | 161 "//services/viz/hit_test/public/interfaces", |
| 161 "//skia", | 162 "//skia", |
| 162 "//testing/gmock", | 163 "//testing/gmock", |
| 163 "//testing/gtest", | 164 "//testing/gtest", |
| 164 "//ui/display/types", | 165 "//ui/display/types", |
| 165 ] | 166 ] |
| 166 } | 167 } |
| 167 | 168 |
| 168 viz_source_set("perf_tests") { | 169 viz_source_set("perf_tests") { |
| 169 testonly = true | 170 testonly = true |
| 170 sources = [ | 171 sources = [ |
| 171 "display/surface_aggregator_perftest.cc", | 172 "display/surface_aggregator_perftest.cc", |
| 172 ] | 173 ] |
| 173 | 174 |
| 174 deps = [ | 175 deps = [ |
| 175 ":service", | 176 ":service", |
| 176 "//base", | 177 "//base", |
| 177 "//cc:test_support", | 178 "//cc:test_support", |
| 178 "//cc/base", | 179 "//cc/base", |
| 179 "//testing/gtest", | 180 "//testing/gtest", |
| 180 "//testing/perf", | 181 "//testing/perf", |
| 181 ] | 182 ] |
| 182 } | 183 } |
| OLD | NEW |