aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse/features/com.android.ide.eclipse.gldebugger
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2014-02-12 11:32:18 -0800
committerSiva Velusamy <vsiva@google.com>2014-04-15 09:20:06 -0700
commit68bd64a51f78ae6a66bd8eea9baf07185e2b9588 (patch)
tree2063beb52dac81892ce547f50bd71c2b4fa1060e /eclipse/features/com.android.ide.eclipse.gldebugger
parenta1d044b7b46ae23c7d8a0f7253287c2cfeba9edc (diff)
downloadsdk-68bd64a51f78ae6a66bd8eea9baf07185e2b9588.zip
sdk-68bd64a51f78ae6a66bd8eea9baf07185e2b9588.tar.gz
sdk-68bd64a51f78ae6a66bd8eea9baf07185e2b9588.tar.bz2
Add scripts to enable Tycho build
This CL adds all the required files to perform a build using Tycho. It is not integrated into the Android build system though. In order to perform a build, make sure your repository has the git projects prebuilts/eclipse and prebuilts/eclipse-build-deps, then do: $ cd sdk/eclipse $ make -f maven.mk That should create the necessary target platform and start a build using Maven/Tycho. The resulting artifacts should be in out/host/maven/bundles-<version>/products Change-Id: I4672cd9ea1ac072a9b5ddb27d98a9849b2a2b8cb
Diffstat (limited to 'eclipse/features/com.android.ide.eclipse.gldebugger')
-rw-r--r--eclipse/features/com.android.ide.eclipse.gldebugger/feature.xml2
-rw-r--r--eclipse/features/com.android.ide.eclipse.gldebugger/pom.xml18
2 files changed, 19 insertions, 1 deletions
diff --git a/eclipse/features/com.android.ide.eclipse.gldebugger/feature.xml b/eclipse/features/com.android.ide.eclipse.gldebugger/feature.xml
index 1e1fda0..baf58a3 100644
--- a/eclipse/features/com.android.ide.eclipse.gldebugger/feature.xml
+++ b/eclipse/features/com.android.ide.eclipse.gldebugger/feature.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
- id="com.android.ide.eclipse.gldebugger"
+ id="com.android.ide.eclipse.gldebugger.feature"
label="Tracer for OpenGL ES"
version="22.6.2.qualifier"
provider-name="The Android Open Source Project">
diff --git a/eclipse/features/com.android.ide.eclipse.gldebugger/pom.xml b/eclipse/features/com.android.ide.eclipse.gldebugger/pom.xml
new file mode 100644
index 0000000..312df4c
--- /dev/null
+++ b/eclipse/features/com.android.ide.eclipse.gldebugger/pom.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <version>22.6.2-SNAPSHOT</version>
+ <artifactId>com.android.ide.eclipse.gldebugger.feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+ <name>gldebugger</name>
+
+ <parent>
+ <relativePath>../../pom.xml</relativePath>
+ <groupId>adt.group</groupId>
+ <artifactId>parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+</project>