| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
The command line build of the plugin displays all warnings in all
plugins: thousands. This makes it harder to find the actual error
breaking the build, and we don't need the warnings in these logs:
it's easier to process and fix warnings within Eclipse when
developing the plugins. So, this changeset turns off warnings for
the command line build configuration.
Change-Id: Id469ad9d6f8357bb331f38562bb0aaa253849f4b
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This changeset makes the SDK codebase compile with source=1.6 (which
means it also requires JDK 6). This means that methods implementing an
interface requires @Override's. It also means we can start using APIs
like the ArrayDeque class and methods like String#isEmpty().
This changeset looks big but the change is trivial: it's basically
adding @Override in all the places that need it, along with some other
automatic Eclipse cleanup in certain files (such as reordering imports
where they were incorrectly ordered (because older versions of Eclipse
didn't always handle inner classes right)), as well as cleaning up
trailing whitespace and removing some $NON-NLS-1$ markers on lines
where there aren't any string literals anymore.
This changeset also sets the source and target JDK level to 6 in the
Eclipse compiler .settings file, and synchronizes this file to all the
other Eclipse SDK projects.
Change-Id: I6a9585aa44c3dee9a5c00739ab22fbdbcb9f8275
|
|
|
|
| |
Change-Id: I3fab918d5d9ed96d753410cfe3cf58a06788a058
|
|
|
|
| |
Change-Id: Ie4e5dcc64ba8e341f2229dce77b07effbe9443ba
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This changeset fixes this issue:
20450: Source->Format for XML files in Project Explorer in 14-preview
applies old XML rules instead of new Android-aware ones
Basically, the Eclipse XML support does not consult the
StructuredTextViewerConfigurationXML configuration when formatting
files. To work around this, this changeset overrides the format
processor defined for XML files and redirects to the ADT custom
formatter when the option to use a custom formatter is set.
Unfortunately, setting the formatProcessor in the ADT plugin does not
work, because it turns out that the WTP code to process layer
registrations processes plugins in alphabetical order of plugin names
(rather than say plugin dependency order), and as a result, the WTP
registration is processed later than the ADT one (because org.eclipse
> com.android) and it clobbers our registration.
To work around this, this changeset adds a *new* plugin, an overlay
for ADT which is named "overlay.com.android.eclipse.(etc)" which sorts
alphabetically later than org.eclipse. The plugin is basically empty
(it just provides a registration of the ADT format processor), and it
is registered as just a part of the ADT plugin so it should not be
exposed to users directly.
Change-Id: I2af2bc1e61e758c36243e4ac7236f676266cc665
|
|
|
|
|
|
|
| |
Update build scripts to include gldebugger feature only for internal
builds.
Change-Id: I3ad9422309df6e0befc878f50e147399b1a3b456
|
|
|
|
|
|
|
|
|
| |
The build_server script used to build the plugin zip file was Linux
specific. This changeset tweaks the scripts such that they will also
run on Mac OSX. It also adds various .gitignore filters such that the
temporary files created by the build script are ignored by git.
Change-Id: I77cfe6bfb65be86c11beb50bcab9c345433b5a8e
|
|
|
|
|
|
| |
This allows us to get useful stack trace from external users.
Change-Id: I588ba6284f7f62cb7a7b73405e805171f350adab
|
|
|
|
|
|
| |
New plugin which adds a Traceview view to Eclipse.
Change-Id: I3001dfde6ed28db3de8a75715a0ba0743f5c29b0
|
|
|
|
|
|
|
|
|
|
|
| |
PDT stands for (Android) Platform Development Tools.
The first version is pretty basic. A single pref page
to give the location of the dev tree. From this it
finds the location of adb and provides it to ddms through
its extension point.
Change-Id: Ibed895852bc46b83ac6bf749d0ea37f0a54fad08
|
|
|
|
|
|
| |
Needs to be build on the build server since ADT depends on it.
Change-Id: I6fe6a2ab00428f25e8b3e4595ea8b81bce94454d
|
| |
|
| |
|
| |
|
| |
|
|
|