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

Side by Side Diff: gpu/tools/tools.gyp

Issue 7718020: Initial checkin of the compositor_model_bench tool, which simulates the GPU demands of Chromium's... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « gpu/tools/compositor_model_bench/shaders.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'conditions': [
10 ['OS == "linux" and target_arch != "arm"', {
11 'targets': [
12 {
13 'target_name': 'compositor_model_bench',
14 'type': 'executable',
15 'dependencies': [
16 '../../base/base.gyp:base',
17 '../../ui/gfx/gl/gl.gyp:gl',
18 ],
19 'libraries': [
20 '-lGL',
21 '-ldl',
22 ],
23 'sources': [
24 'compositor_model_bench/compositor_model_bench.cc',
25 'compositor_model_bench/render_tree.cc',
26 'compositor_model_bench/shaders.cc',
27 'compositor_model_bench/render_models.cc',
28 'compositor_model_bench/render_model_utils.cc',
29 'compositor_model_bench/forward_render_model.cc',
30 ],
31 },
32 ],
33 }],
34 ],
35 }
OLDNEW
« no previous file with comments | « gpu/tools/compositor_model_bench/shaders.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698