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

Side by Side Diff: tools/gn/bootstrap/build_vs.ninja.template

Issue 2064513002: GN: Add Windows support to bootstrap.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments 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
« no previous file with comments | « tools/gn/bootstrap/build_mac.ninja.template ('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 rule cc
2 command = $cc /nologo /showIncludes /FC @${out}.rsp /c ${in} /Fo${out}
3 description = CC ${out}
4 rspfile = ${out}.rsp
5 rspfile_content = ${defines} ${includes} ${cflags} ${cflags_c}
6 deps = msvc
7
8 rule cxx
9 command = $cxx /nologo /showIncludes /FC @${out}.rsp /c ${in} /Fo${out}
10 description = CXX ${out}
11 rspfile = ${out}.rsp
12 rspfile_content = ${defines} ${includes} ${cflags} ${cflags_cc}
13 deps = msvc
14
15 rule alink_thin
16 command = $ar /nologo /ignore:4221 /OUT:${out} @${out}.rsp
17 description = LIB ${out}
18 rspfile = ${out}.rsp
19 rspfile_content = ${in_newline}
20
21 rule link
22 command = $ld /nologo /OUT:${out} /PDB:${out}.pdb @${out}.rsp
23 description = LINK ${out}
24 rspfile = ${out}.rsp
25 rspfile_content = ${in_newline} ${libs} ${solibs} ${ldflags}
OLDNEW
« no previous file with comments | « tools/gn/bootstrap/build_mac.ninja.template ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698