Side by Side Diff: src/pkg/image/Makefile
Issue 5132048 :
code review 5132048: image: spin off a new color package out of the image pa... (Closed)
Patch Set: diff -r e144a6dec55e https://go.googlecode.com/hg/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/cmd/gofix/Makefile
src/cmd/gofix/imagecolor.go
src/cmd/gofix/imagecolor_test.go
src/cmd/gofix/imagenew_test.go
src/pkg/Makefile
src/pkg/image/Makefile
src/pkg/image/bmp/reader.go
src/pkg/image/color/Makefile
src/pkg/image/color/color.go
src/pkg/image/decode_test.go
src/pkg/image/draw/bench_test.go
src/pkg/image/draw/draw.go
src/pkg/image/draw/draw_test.go
src/pkg/image/gif/reader.go
src/pkg/image/image.go
src/pkg/image/image_test.go
src/pkg/image/jpeg/reader.go
src/pkg/image/jpeg/writer_test.go
src/pkg/image/names.go
src/pkg/image/png/reader.go
src/pkg/image/png/reader_test.go
src/pkg/image/png/writer.go
src/pkg/image/png/writer_test.go
src/pkg/image/tiff/reader.go
src/pkg/image/ycbcr/ycbcr.go
OLD NEW
1 # Copyright 2009 The Go Authors. All rights reserved. 1 # Copyright 2009 The Go Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style 2 # Use of this source code is governed by a BSD-style
3 # license that can be found in the LICENSE file. 3 # license that can be found in the LICENSE file.
4 4
5 include ../../Make.inc 5 include ../../Make.inc
6 6
7 TARG=image 7 TARG=image
8 GOFILES=\ 8 GOFILES=\
9 color.go\
10 format.go\ 9 format.go\
11 geom.go\ 10 geom.go\
12 image.go\ 11 image.go\
13 names.go\ 12 names.go\
14 13
15 include ../../Make.pkg 14 include ../../Make.pkg
OLD NEW