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

Unified Diff: gpu/tools/compositor_model_bench/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/BUILD.gn ('k') | gpu/tools/tools.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/tools/compositor_model_bench/BUILD.gn
diff --git a/gpu/tools/compositor_model_bench/BUILD.gn b/gpu/tools/compositor_model_bench/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..8eadc6b9716c21f5976e97240979121fec91d843
--- /dev/null
+++ b/gpu/tools/compositor_model_bench/BUILD.gn
@@ -0,0 +1,28 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/ui.gni")
+
+if (is_linux && !is_chromeos && target_cpu != "arm" && use_x11) {
+ # GYP version: //gpu/tools/tools.gyp:compositor_model_bench
+ executable("compositor_model_bench") {
+ sources = [
+ "compositor_model_bench.cc",
+ "forward_render_model.cc",
+ "render_model_utils.cc",
+ "render_models.cc",
+ "render_tree.cc",
+ "shaders.cc",
+ ]
+
+ libs = [ "GL" ]
+
+ configs += [ "//build/config/linux:x11" ]
+
+ deps = [
+ "//base",
+ "//ui/gl",
+ ]
+ }
+}
« no previous file with comments | « gpu/BUILD.gn ('k') | gpu/tools/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698