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

Side by Side Diff: remoting/client/opengl/BUILD.gn

Issue 2036023003: Script to inline shader into C header file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
OLDNEW
(Empty)
1 shaders = [
Yuwei 2016/06/03 23:33:00 This is how the script will be used. Shaders don't
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"
8 out_path = "${root_gen_dir}/remoting/client/opengl/shaders.h"
9 inputs = shaders
10 include_guard = "REMOTING_CLIENT_OPENGL_SHADERS_H_"
11 outputs = [
12 out_path,
13 ]
14 args = [
15 include_guard,
16 rebase_path(out_path),
17 ] + rebase_path(shaders)
18 }
OLDNEW
« no previous file with comments | « no previous file | remoting/tools/build/remoting_c_text_inliner.py » ('j') | remoting/tools/build/remoting_c_text_inliner.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698