OLD | NEW |
| (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 'targets': [ | |
10 ], | |
11 'conditions': [ | |
12 ['OS == "linux" and target_arch != "arm"', { | |
13 'targets': [ | |
14 { | |
15 'target_name': 'compositor_model_bench', | |
16 'type': 'executable', | |
17 'dependencies': [ | |
18 '../../base/base.gyp:base', | |
19 '../../ui/gfx/gl/gl.gyp:gl', | |
20 ], | |
21 'libraries': [ | |
22 '-lGL', | |
23 '-ldl', | |
24 ], | |
25 'sources': [ | |
26 'compositor_model_bench/compositor_model_bench.cc', | |
27 'compositor_model_bench/render_tree.cc', | |
28 'compositor_model_bench/shaders.cc', | |
29 'compositor_model_bench/render_models.cc', | |
30 'compositor_model_bench/render_model_utils.cc', | |
31 'compositor_model_bench/forward_render_model.cc', | |
32 ], | |
33 }, | |
34 ], | |
35 }], | |
36 ], | |
37 } | |
OLD | NEW |