-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05077da
commit ece0eae
Showing
11 changed files
with
88 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>cuckoo_plugin_feature</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.pde.FeatureBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.pde.FeatureNature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bin.includes = feature.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#Tue Jun 19 13:46:56 CEST 2012 | ||
CuckooPlugin=tmp-eclipse | ||
@ignoredot@=true |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<feature | ||
id="CuckooPlugin.feature" | ||
label="CuckooPlugin Feature" | ||
version="0.0.3.qualifier" | ||
license-feature="org.eclipse.pde"> | ||
|
||
<description> | ||
The Cuckoo plugin extends the Android plugin to | ||
further rewrite the result of the Android plugin | ||
rewrite of AIDL files, for computation off-loading. | ||
</description> | ||
|
||
<copyright url="http://www.example.com/copyright"> | ||
Copyright (c) 2011 VU University, The Netherlands | ||
</copyright> | ||
|
||
<license url="https://raw.github.com/interdroid/cuckoo-plugin-feature/master/LICENSE"> | ||
BSD 3 clause | ||
</license> | ||
|
||
<url> | ||
<update label="CuckooPlugin" url="https://raw.github.com/interdroid/cuckoo-plugin-feature/master/exported"/> | ||
</url> | ||
|
||
<requires> | ||
<import plugin="com.android.ide.eclipse.adt"/> | ||
<import plugin="org.eclipse.core.resources"/> | ||
<import plugin="org.eclipse.core.runtime"/> | ||
<import plugin="org.eclipse.ui"/> | ||
<import plugin="org.eclipse.ui.ide"/> | ||
<import plugin="org.eclipse.jdt.core"/> | ||
</requires> | ||
|
||
<plugin | ||
id="CuckooPlugin" | ||
download-size="0" | ||
install-size="0" | ||
version="0.0.0" | ||
unpack="false"/> | ||
|
||
</feature> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
** Cuckoo README ** | ||
|
||
Cuckoo is an open source computation offloading project of the Computer | ||
Systems group of the Computer Science department of the Faculty of | ||
Sciences at the VU University, Amsterdam, The Netherlands. The | ||
main goal of the Cuckoo project is to simplify computation offloading | ||
for Android apps. | ||
|
||
Cuckoo is free software. See the file "LICENSE" for copying permissions. | ||
|
||
The manual in the docs directory of the library project ("docs/manual.pdf") explains | ||
how to build and run your Cuckoo application. | ||
|
||
The current Cuckoo source repository tree is accessible through Github at | ||
https://github.com/interdroid/cuckoo-library and https://github.com/interdroid/cuckoo-plugin | ||
and https://github.com/interdroid/cuckoo-plugin-feature. | ||
|
||
You can create a new version of the plugin by checking out the cuckoo-plugin code, making some changes, | ||
then opening the feature.xml of this project in Eclipse (with the Feature Manifest Editor). | ||
|
||
Select the export wizard and provide an output directory. Then copy the files from the output directory | ||
to the exported directory of this project and commit and push to github. Click Help -> Check for Updates | ||
in Eclipse to retrieve the new version in Eclipse. | ||
|