OLD | NEW |
---|---|
(Empty) | |
1 shaders = [ | |
2 "tex_coord_to_view.vert", | |
3 "draw_tex.frag", | |
4 ] | |
5 | |
6 action("inline_shaders") { | |
7 script = "../../tools/build/remoting_c_text_inliner.py" | |
Jamie
2016/06/04 00:24:37
I think the script name would be better as somethi
Yuwei
2016/06/04 01:31:42
Done.
| |
8 out_path = "${root_gen_dir}/remoting/client/opengl/shaders.h" | |
9 inputs = shaders | |
10 include_guard = "REMOTING_CLIENT_OPENGL_SHADERS_H_" | |
Jamie
2016/06/04 00:24:37
Using the same include guard for every invocation
Yuwei
2016/06/04 00:37:07
Hmm... But I think this action should only be call
Yuwei
2016/06/04 01:31:42
Done.
| |
11 outputs = [ | |
12 out_path, | |
13 ] | |
14 args = [ | |
15 include_guard, | |
16 rebase_path(out_path), | |
17 ] + rebase_path(shaders) | |
18 } | |
OLD | NEW |