-
Notifications
You must be signed in to change notification settings - Fork 3
/
Logcat.dpk
65 lines (61 loc) · 2.17 KB
/
Logcat.dpk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package Logcat;
{$R *.res}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS ON}
{$RANGECHECKS ON}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$DEFINE BPL}
{$ENDIF IMPLICITBUILDING}
{$IMPLICITBUILD ON}
requires
rtl,
designide,
VirtualTreesDR,
SVGIconImageList,
SVGImage32Package;
contains
Form.Logcat in 'source\Form.Logcat.pas' {FormLogcat},
Frame.Logcat in 'source\Frame.Logcat.pas' {FrameLogcat: TFrame},
DM.Logcat in 'source\DM.Logcat.pas' {DMLogcat: TDataModule},
adb.AdbHelper in 'source\adb.AdbHelper.pas',
adb.AndroidDebugBridge in 'source\adb.AndroidDebugBridge.pas',
adb.Device in 'source\adb.Device.pas',
adb.DeviceMonitor in 'source\adb.DeviceMonitor.pas',
adb.Logcat in 'source\adb.Logcat.pas',
adb.Preferences in 'source\adb.Preferences.pas',
adb.Protocol in 'source\adb.Protocol.pas',
adb.Receiver.CollectingOutputReceiver in 'source\adb.Receiver.CollectingOutputReceiver.pas',
adb.Receiver.GetPropReceiver in 'source\adb.Receiver.GetPropReceiver.pas',
adb.Receiver.MultiLineReceiver in 'source\adb.Receiver.MultiLineReceiver.pas',
adb.Receiver.NullOutputReceiver in 'source\adb.Receiver.NullOutputReceiver.pas',
Common.Debug in 'source\Common.Debug.pas',
System.AtomicTypes in 'source\System.AtomicTypes.pas',
System.Net.SocketHelper in 'source\System.Net.SocketHelper.pas',
System.Pipes in 'source\System.Pipes.pas',
System.Process in 'source\System.Process.pas',
System.Types.Nullable in 'source\System.Types.Nullable.pas',
Form.Logcat.TakeScreenshot in 'source\Form.Logcat.TakeScreenshot.pas' {FormTakeScreenshot},
adb.RawImage in 'source\adb.RawImage.pas',
adb.Receiver.PSReceiver in 'source\adb.Receiver.PSReceiver.pas',
System.TabControlStyleBtnClose in 'source\System.TabControlStyleBtnClose.pas',
System.Utility.IntAllocator in 'source\System.Utility.IntAllocator.pas';
end.