jdk/make/sun/awt/FILES_c_windows.gmk
author serb
Mon, 05 Dec 2011 17:11:57 +0400
changeset 11103 e156ce2c4a96
parent 7668 d4a77089c587
permissions -rw-r--r--
7115400: jdk 8 awt-gate build fails in headless toolkit on solaris. Reviewed-by: prr, art, bae
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 7487
diff changeset
     2
# Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4831
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4831
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4831
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4831
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4831
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
FILES_c = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
	GraphicsPrimitiveMgr.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
	Blit.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
	BlitBg.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
	ScaledBlit.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
	FillRect.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
	FillSpans.c \
7487
9b031d062ede 6775317: Improve performance of non-AA transformed rectangles and single wide lines in software pipelines
flar
parents: 5506
diff changeset
    33
	FillParallelogram.c \
9b031d062ede 6775317: Improve performance of non-AA transformed rectangles and single wide lines in software pipelines
flar
parents: 5506
diff changeset
    34
	DrawParallelogram.c \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
	DrawLine.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
	DrawRect.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
	DrawPolygons.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
        DrawPath.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
        FillPath.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        ProcessPath.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
	MaskBlit.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
	MaskFill.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
	TransformHelper.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        AlphaMath.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
	AlphaMacros.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
	AnyByte.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        ByteBinary1Bit.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        ByteBinary2Bit.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        ByteBinary4Bit.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
	ByteIndexed.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
	ByteGray.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
	Index8Gray.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
	Index12Gray.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
	AnyShort.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
	Ushort555Rgb.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
	Ushort565Rgb.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
	Ushort4444Argb.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
	Ushort555Rgbx.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
	UshortGray.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
	UshortIndexed.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
	Any3Byte.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
	ThreeByteBgr.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
	AnyInt.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
	IntArgb.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        IntArgbPre.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        IntArgbBm.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
	IntRgb.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
	IntBgr.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
	IntRgbx.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
	Any4Byte.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        FourByteAbgr.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        FourByteAbgrPre.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
	BufferedMaskBlit.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
	BufferedRenderPipe.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
	ShapeSpanIterator.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
	SpanClipRenderer.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
	SurfaceData.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
	Region.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
	DataBufferNative.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
	BufImgSurfaceData.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
	Disposer.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        Trace.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
	img_globals.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
	gifdecoder.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
	awt_parseImage.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
	awt_ImageRep.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
	awt_ImagingLib.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
	dither.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
	imageInitIDs.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
	debug_assert.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
	debug_mem.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
	debug_trace.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
	debug_util.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        OGLBlitLoops.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        OGLBufImgOps.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        OGLContext.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        OGLFuncs.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        OGLMaskBlit.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        OGLMaskFill.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        OGLPaints.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        OGLRenderQueue.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        OGLRenderer.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        OGLSurfaceData.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        OGLTextRenderer.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        OGLVertexCache.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        WGLGraphicsConfig.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        WGLSurfaceData.c \
2451
597df8e1d786 6633275: Need to support shaped/translucent windows
art
parents: 1954
diff changeset
   108
        AccelGlyphCache.c \
597df8e1d786 6633275: Need to support shaped/translucent windows
art
parents: 1954
diff changeset
   109
        rect.c
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
FILES_cpp = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
	CmdIDList.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
	Hashtable.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
	GDIHashtable.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
	Devices.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
	ObjectList.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
	GDIBlitLoops.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
	GDIRenderer.cpp \
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   119
	GDIWindowSurfaceData.cpp \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
	WindowsFlags.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
	WPrinterJob.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
	awt_AWTEvent.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
	awt_BitmapUtil.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
	awt_Brush.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
	awt_Button.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
	awt_Canvas.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
	awt_Checkbox.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
	awt_Choice.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
	awt_Clipboard.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
	awt_Color.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
	awt_Component.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
	awt_Container.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
	awt_Cursor.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
	awt_DataTransferer.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
	awt_Debug.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
	awt_Dimension.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
	awt_Desktop.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
	awt_DesktopProperties.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
	awt_Dialog.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
	awt_DrawingSurface.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
	awt_FileDialog.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
	awt_Event.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
	awt_Font.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
	awt_Frame.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
	awt_GDIObject.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
	awt_IconCursor.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
	awt_InputEvent.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
	awt_InputMethod.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
	awt_InputTextInfor.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
	awt_Insets.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
	awt_KeyEvent.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
	awt_KeyboardFocusManager.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
	awt_Label.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
	awt_List.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
	awt_Menu.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
	awt_MenuBar.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
	awt_MenuItem.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
	awt_MouseEvent.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
	awt_Object.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
	awt_Palette.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
	awt_Panel.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
	awt_PopupMenu.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
	awt_Pen.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
	awt_PrintControl.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
	awt_PrintDialog.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
	awt_PrintJob.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
	awt_Rectangle.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
	awt_Robot.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
	awt_Scrollbar.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
	awt_ScrollPane.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
	awt_TextArea.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
	awt_TextComponent.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
	awt_TextField.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
	awt_Toolkit.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
	awt_Window.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
	awt_Win32GraphicsEnv.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
	awt_Win32GraphicsDevice.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
	awt_Win32GraphicsConfig.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
	awt_DnDDT.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
	awt_DnDDS.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
	awt_Mlib.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
	awt_new.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
	awt_TrayIcon.cpp \
4831
85d01a4fe115 4874070: invoking DragSource's startDrag with an Image renders no image on drag
uta
parents: 2699
diff changeset
   184
	awt_DCHolder.cpp \
85d01a4fe115 4874070: invoking DragSource's startDrag with an Image renders no image on drag
uta
parents: 2699
diff changeset
   185
	awt_ole.cpp \
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   186
	ShaderList.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   187
	D3DBlitLoops.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   188
	D3DBufImgOps.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   189
	D3DContext.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   190
	D3DGlyphCache.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   191
	D3DGraphicsDevice.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   192
	D3DMaskBlit.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   193
	D3DMaskCache.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   194
	D3DMaskFill.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   195
	D3DPipelineManager.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   196
	D3DPaints.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   197
	D3DRenderer.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   198
	D3DRenderQueue.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   199
	D3DResourceManager.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   200
	D3DSurfaceData.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   201
	D3DTextRenderer.cpp \
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   202
	D3DVertexCacher.cpp \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
	ShellFolder2.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
	ThemeReader.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
	ComCtl32Util.cpp \
2472
b7aba00cabb6 6693253: Security Warning appearance requires enhancements
anthony
parents: 2451
diff changeset
   206
	DllUtil.cpp \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
	initIDs.cpp \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
	MouseInfo.cpp