| 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 # GYP-to-GN project mappings: | 5 # GYP-to-GN project mappings: |
| 6 # | 6 # |
| 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client | 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client |
| 8 # | 8 # |
| 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common | 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common |
| 10 # | 10 # |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 | 284 |
| 285 deps = [ | 285 deps = [ |
| 286 "//base", | 286 "//base", |
| 287 "//base/test:test_support", | 287 "//base/test:test_support", |
| 288 "//base/third_party/dynamic_annotations", | 288 "//base/third_party/dynamic_annotations", |
| 289 "//testing/gmock", | 289 "//testing/gmock", |
| 290 "//testing/gtest", | 290 "//testing/gtest", |
| 291 "//third_party/angle:translator_static", | 291 "//third_party/angle:translator_static", |
| 292 ] | 292 ] |
| 293 } | 293 } |
| 294 | |
| 295 if (is_linux && !is_chromeos && target_cpu != "arm" && use_x11) { | |
| 296 executable("compositor_model_bench") { | |
| 297 sources = [ | |
| 298 "tools/compositor_model_bench/compositor_model_bench.cc", | |
| 299 "tools/compositor_model_bench/forward_render_model.cc", | |
| 300 "tools/compositor_model_bench/render_model_utils.cc", | |
| 301 "tools/compositor_model_bench/render_models.cc", | |
| 302 "tools/compositor_model_bench/render_tree.cc", | |
| 303 "tools/compositor_model_bench/shaders.cc", | |
| 304 ] | |
| 305 | |
| 306 libs = [ "GL" ] | |
| 307 | |
| 308 configs += [ "//build/config/linux:x11" ] | |
| 309 | |
| 310 deps = [ | |
| 311 "//base", | |
| 312 "//ui/gl", | |
| 313 ] | |
| 314 } | |
| 315 } | |
| OLD | NEW |