Merge commit 'e0de1bc940255721ebef6fffd8b70d9801ee3a4d'
* commit 'e0de1bc940255721ebef6fffd8b70d9801ee3a4d':
Fix the NDK packaging script to use git ls-files instead of git-ls-files
Merge commit '5c569078a278f3887febeb8776bf8f354a3ded58'
* commit '5c569078a278f3887febeb8776bf8f354a3ded58':
Change the NDK samples package names to be lower case. Also added minSdkVersion=3 in the manifests.
Merge commit '66ce41fc33019af420cc87d41ed7cc8c010a6915'
* commit '66ce41fc33019af420cc87d41ed7cc8c010a6915':
generate zip files on Windows and OS X when packaging NDK releases
Merge commit 'fdeb1d29f4a33a0dea74a42c921ce13f41183088'
* commit 'fdeb1d29f4a33a0dea74a42c921ce13f41183088':
Make the release script work on OS X, and think about ensure the generated tarballs are readable by anyone
Merge commit '6e90766992f39cff50889c7d3c32d2c208360f1c'
* commit '6e90766992f39cff50889c7d3c32d2c208360f1c':
Remove files from NDK samples that should not be there.
"runtest -c .<className>" will now be equivalent to
"runtest -c <package>.<className>", where package is the test-app's package as defined in test_defs.xml.
Merge commit '85972041d04b24f26000c5504c1afe9d824b6c9a'
* commit '85972041d04b24f26000c5504c1afe9d824b6c9a':
Make the simulator handle paths like '//data/data/...' the same way the device does.
Merge commit '1bb52f25870a0f183b9c5a24362c2468fb316435'
* commit '1bb52f25870a0f183b9c5a24362c2468fb316435':
Fix ADT junit test for AndroidManifestParser following API change.
We currently hardcode a list in the PlatformTarget and propagate
it to the UI via the AndroidTargetParser. This way we can later
decide to actually get the info from some kind of manifest.
Previously we were looking for test files with this pattern: test_*
I added *_test.[cc|cpp] and *_unittest.[cc|cpp]
The search also scan all the subdirectories of the build_path from
the test definition.
I added a filtering stage where missing tests are ignored.
For instance we may have a source file that has not been built for
the target, in which case it is ignored when we run the target tests.
In android_build.py I added 4 helper functions to get access to the
build environment:
- GetHostBin
- GetProductOut
- GetTargetSystemBin
- GetHostOsArch
Replace all the hardcoded linux-x86 strings with the value returned
by GetHostOsArch.
Merge commit '39bd4dd798c9dbcaf9b37248dd3d3f56dc1bb4af'
* commit '39bd4dd798c9dbcaf9b37248dd3d3f56dc1bb4af':
AI 148202: Applying changes to build_new_device.jd originally made by Reena in CL 148100. I made her edits by hand. The problem is that I moved all content files from docs to docs/guide and she edited the version in docs (which no longer exists).
Merge commit '01a62eeda8f2065aaf26a02decc615c19b63e967' into donut
* commit '01a62eeda8f2065aaf26a02decc615c19b63e967':
AI 148202: Applying changes to build_new_device.jd originally made by Reena in CL 148100. I made her edits by hand. The problem is that I moved all content files from docs to docs/guide and she edited the version in docs (which no longer exists).
Merge commit 'beb3214b46e18bb461760c47f04c5b909557d060'
* commit 'beb3214b46e18bb461760c47f04c5b909557d060':
ADT #1823896: Ability to add an "extra" action to the AVD Selector.
Used to display the AVD Manager from the Device Chooser/Launch config.
Used to delete AVDs from the AVD Manager.
In AVD Manager, also hide the Cancel button since actions are
immediate and not cancelable.
Merge commit 'd1a367549baba493f2d87c2377e09323b929e772'
* commit 'd1a367549baba493f2d87c2377e09323b929e772':
Modified the command to run native test on the host:
* changes:
Modified the command to run native test on the host: - when valgrind is used, the output is discarded, always. - otherwise, the output of the test is printed only when the test failed.