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

Side by Side Diff: base/third_party/libevent/test/Makefile.nmake

Issue 1531573008: move libevent into base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn bootstrap Created 5 years 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
1 1
2 CFLAGS=/I.. /I../include /I../WIN32-Code /I../compat /DWIN32 /DHAVE_CONFIG_H 2 CFLAGS=/I.. /I../include /I../WIN32-Code /I../compat /DWIN32 /DHAVE_CONFIG_H
3 3
4 CFLAGS=$(CFLAGS) /Ox /W3 /wd4996 /nologo 4 CFLAGS=$(CFLAGS) /Ox /W3 /wd4996 /nologo
5 5
6 REGRESS_OBJS=regress.obj regress_http.obj regress_dns.obj \ 6 REGRESS_OBJS=regress.obj regress_http.obj regress_dns.obj \
7 regress_rpc.obj regress.gen.obj \ 7 regress_rpc.obj regress.gen.obj \
8 8
9 OTHER_OBJS=test-init.obj test-eof.obj test-weof.obj test-time.obj \ 9 OTHER_OBJS=test-init.obj test-eof.obj test-weof.obj test-time.obj \
10 bench.obj bench_cascade.obj bench_http.obj bench_httpclient.obj 10 bench.obj bench_cascade.obj bench_http.obj bench_httpclient.obj
(...skipping 27 matching lines...) Expand all
38 $(CC) $(CFLAGS) $(LIBS) bench_cascade.obj 38 $(CC) $(CFLAGS) $(LIBS) bench_cascade.obj
39 bench_http.exe: bench_http.obj 39 bench_http.exe: bench_http.obj
40 $(CC) $(CFLAGS) $(LIBS) bench_http.obj 40 $(CC) $(CFLAGS) $(LIBS) bench_http.obj
41 bench_httpclient.exe: bench_httpclient.obj 41 bench_httpclient.exe: bench_httpclient.obj
42 $(CC) $(CFLAGS) $(LIBS) bench_httpclient.obj 42 $(CC) $(CFLAGS) $(LIBS) bench_httpclient.obj
43 43
44 clean: 44 clean:
45 -del $(REGRESS_OBJS) 45 -del $(REGRESS_OBJS)
46 -del $(OTHER_OBJS) 46 -del $(OTHER_OBJS)
47 -del regress.exe 47 -del regress.exe
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698