Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
dliw committed May 16, 2013
0 parents commit 50c526f
Show file tree
Hide file tree
Showing 20 changed files with 18,512 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
backup/
lib/
*.lps
*.[oa]
*.exe
*.res
.directory
gmon.out
ppas.sh
77 changes: 77 additions & 0 deletions Component/cef3.lpk
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?xml version="1.0"?>
<CONFIG>
<Package Version="4">
<Name Value="CEF3"/>
<Author Value="d.l.i.w &lt;[email protected]>"/>
<CompilerOptions>
<Version Value="11"/>
<SearchPaths>
<IncludeFiles Value=".."/>
<OtherUnitFiles Value=".."/>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Parsing>
<SyntaxOptions>
<AllowLabel Value="False"/>
</SyntaxOptions>
</Parsing>
<Other>
<CompilerMessages>
<MsgFileName Value=""/>
</CompilerMessages>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Description Value="Chromium component for Lazarus"/>
<Version Minor="1"/>
<Files Count="7">
<Item1>
<Filename Value="cef3lcl.pas"/>
<HasRegisterProc Value="True"/>
<UnitName Value="cef3lcl"/>
</Item1>
<Item2>
<Filename Value="../cef.inc"/>
<Type Value="Include"/>
</Item2>
<Item3>
<Filename Value="../cef3api.pas"/>
<UnitName Value="cef3api"/>
</Item3>
<Item4>
<Filename Value="../cef3api_static.pas"/>
<UnitName Value="cef3api_static"/>
</Item4>
<Item5>
<Filename Value="../cef3class.pas"/>
<UnitName Value="cef3class"/>
</Item5>
<Item6>
<Filename Value="../cef3gui.pas"/>
<UnitName Value="cef3gui"/>
</Item6>
<Item7>
<Filename Value="../cef3intf.pas"/>
<UnitName Value="cef3intf"/>
</Item7>
</Files>
<Type Value="RunAndDesignTime"/>
<RequiredPkgs Count="3">
<Item1>
<PackageName Value="LCL"/>
</Item1>
<Item2>
<PackageName Value="LCLBase"/>
</Item2>
<Item3>
<PackageName Value="FCL"/>
</Item3>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
</PublishOptions>
</Package>
</CONFIG>
22 changes: 22 additions & 0 deletions Component/cef3.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}

unit CEF3;

interface

uses
cef3lcl, cef3api, cef3api_static, cef3class, cef3gui, cef3intf,
LazarusPackageIntf;

implementation

procedure Register;
begin
RegisterUnit('cef3lcl', @cef3lcl.Register);
end;

initialization
RegisterPackage('CEF3', @Register);
end.
Loading

0 comments on commit 50c526f

Please sign in to comment.