Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Side by Side Diff: gpu/BUILD.gn

Issue 1032193002: Have compositor_model_bench target near its source files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | gpu/tools/compositor_model_bench/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | gpu/tools/compositor_model_bench/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698