The Android Automerger
7134fbe50f
IMM30C
2012-02-06 08:44:05 -08:00
The Android Automerger
7410fbd593
IMM3C
2012-02-06 08:42:38 -08:00
Xavier Ducrohet
3853154d13
Merge "Add lint to all builds."
2012-02-03 11:13:41 -08:00
Xavier Ducrohet
77816b88bf
Add lint to all builds.
...
Change-Id: I30a366b0b313c8e418de38f0790b087f287f3bdf
2012-02-03 10:46:14 -08:00
Jean-Baptiste Queru
87c3c9b732
am 6c6a7012: am 5aec09b5: am 9a741915: Merge "Add annotations to the sdk build."
...
* commit '6c6a7012ad0e77518f8aea9e2a70c830c67e99dc':
Add annotations to the sdk build.
2012-02-02 22:39:30 -08:00
Jean-Baptiste Queru
6c6a7012ad
am 5aec09b5: am 9a741915: Merge "Add annotations to the sdk build."
...
* commit '5aec09b5f3537d0c700b93ede1718a97dbec0050':
Add annotations to the sdk build.
2012-02-02 22:37:26 -08:00
Jean-Baptiste Queru
5aec09b5f3
am 9a741915: Merge "Add annotations to the sdk build."
...
* commit '9a7419153e7fffa6056a24b567ff3f45111aa0c0':
Add annotations to the sdk build.
2012-02-02 22:34:18 -08:00
Jean-Baptiste Queru
9a7419153e
Merge "Add annotations to the sdk build."
2012-02-02 13:43:07 -08:00
Xavier Ducrohet
d79f950820
Add annotations to the sdk build.
...
Change-Id: I22ab1e737f05f6134ec9701c8ed69642a3708fbf
2012-02-02 13:41:19 -08:00
Alon Albert
84e681c397
Merge "Add requestsync package"
2012-02-01 17:48:12 -08:00
Ying Wang
6aec316a56
Merge "Use @rpath and @loader_path to avoid absolute path"
2012-02-01 17:38:37 -08:00
Alon Albert
df6a14fa56
Add requestsync package
...
Change-Id: I0429a7cb238b124d3e42927b9dc806bbd5af0622
2012-02-01 15:33:12 -08:00
Ying Wang
5dea692715
Use @rpath and @loader_path to avoid absolute path
...
With "-Wl,-rpath,@loader_path/../lib" the linker embeds
@loader_path/../lib as the target binary's rpath.
Here @loader_path means the path of the binary that initiates the
loading.
With "-install_name @rpath/libfoo.dylib " the linker runtime searches
libfoo.dylib in the binary's embeded rpath.
With this change you can call dlopen() without specifying the full path
of the shared library.
Change-Id: If9beb3f6f4642a377bff603bab5ba3fdb96211bf
2012-02-01 13:20:30 -08:00
Andreas Huber
d8b5bb3386
Include the amr wb encoder shared library in all builds.
...
Change-Id: I5f61c696336cf77d49d08b6f99d60046774e91f2
2012-02-01 12:13:38 -08:00
Andreas Huber
1b87a38d32
Merge "Include the amr encoder shared library in all builds."
2012-02-01 11:31:19 -08:00
Ying Wang
80469e4d6c
Delete unused var.
...
Change-Id: Ib6c295287f064529a8b4d8ada15a9fbb73064f1e
2012-02-01 11:28:00 -08:00
Ying Wang
c0611b9594
Merge "Set install name with absolute path for Mac host shared libraries."
2012-02-01 11:25:26 -08:00
Andreas Huber
715686ddbd
Include the amr encoder shared library in all builds.
...
Change-Id: Ib2c4b8ee73d0615e712c672b9badd156906811e6
2012-02-01 10:42:44 -08:00
The Android Open Source Project
d485a9d200
am 96601e74: Ignore 75c781c9
...
* commit '96601e740e073d77b8f699e81792a1dcb4ff9f09':
2012-02-01 10:01:20 -08:00
The Android Open Source Project
96601e740e
Ignore 75c781c9
...
Change-Id: Id97047a665c03bcf35785fba3785cf5575f3341b
2012-02-01 09:58:00 -08:00
The Android Open Source Project
3d9cad0841
am 402e36f1: Reconcile with ics-mr1-release
...
* commit '402e36f189cfa1de55deb575da2c34d97fe95389':
IMM30B
IMM29
IMM26B
IMM26
IMM26B
2012-02-01 09:09:11 -08:00
The Android Open Source Project
75c781c972
Reconcile with ics-mr1-release
...
Change-Id: I1d101ce7d4690a74f494cdc605e797130946210c
2012-02-01 08:49:25 -08:00
The Android Open Source Project
402e36f189
Reconcile with ics-mr1-release
...
Change-Id: Icc486a00d6c067c87364023fcf7226686dc0642a
2012-02-01 08:42:31 -08:00
Scott Main
ba66dec545
am a57f538a: am 7f24ddbc: Merge "docs: add the sidenav h2 back to the stylesheet for compatibility w/ javadocs" into ics-mr1
...
* commit 'a57f538a22b99ae0e72e18e95d19635d2e6e0762':
docs: add the sidenav h2 back to the stylesheet for compatibility w/ javadocs
2012-02-01 00:18:03 -08:00
Scott Main
bcb1457898
am 769a02fd: am 5be15a0f: Merge "docs: update TOS and PP links to point to unified policy/tems also add a link to the b.android.com issue for reporting doc issues and open footer links in a new window issue: 5931704" into ics-mr1
...
* commit '769a02fd81fdf7e2a92c8282fa5eee05a4273b63':
docs: update TOS and PP links to point to unified policy/tems also add a link to the b.android.com issue for reporting doc issues and open footer links in a new window issue: 5931704
2012-02-01 00:15:54 -08:00
Ying Wang
b4c2a64040
Set install name with absolute path for Mac host shared libraries.
...
Before this change, path of the install name is relative to the top dir.
That means you can execute dynamically-linked binaries only in the top dir.
With this change, you can execute dynamically-linked binaries anywhere.
Change-Id: I1c6441579ffb68505ea678296aceb2e66a6df1be
2012-01-31 21:04:25 -08:00
The Android Automerger
9ffda11f19
IMM30B
2012-01-31 16:24:20 -08:00
The Android Automerger
c1c74182e3
IMM29
2012-01-31 15:43:31 -08:00
The Android Automerger
04b1cdbe28
merge in ics-mr1-release history after reset to ics-mr1
2012-01-31 15:40:59 -08:00
Scott Main
a57f538a22
am 7f24ddbc: Merge "docs: add the sidenav h2 back to the stylesheet for compatibility w/ javadocs" into ics-mr1
...
* commit '7f24ddbc75b301cd3520e8fefaeb2e94a6dcc80b':
docs: add the sidenav h2 back to the stylesheet for compatibility w/ javadocs
2012-01-31 15:21:32 -08:00
Scott Main
7f24ddbc75
Merge "docs: add the sidenav h2 back to the stylesheet for compatibility w/ javadocs" into ics-mr1
2012-01-31 15:19:44 -08:00
Scott Main
1c9630ea4a
docs: add the sidenav h2 back to the stylesheet for compatibility w/ javadocs
...
Change-Id: I37551efd09bea528200a93a8d3602ea11e63f140
2012-01-31 15:18:47 -08:00
Scott Main
769a02fd81
am 5be15a0f: Merge "docs: update TOS and PP links to point to unified policy/tems also add a link to the b.android.com issue for reporting doc issues and open footer links in a new window issue: 5931704" into ics-mr1
...
* commit '5be15a0f13ce559ca6339f0d2cf3dca9f3001dc1':
docs: update TOS and PP links to point to unified policy/tems also add a link to the b.android.com issue for reporting doc issues and open footer links in a new window issue: 5931704
2012-01-31 14:26:19 -08:00
Scott Main
5be15a0f13
Merge "docs: update TOS and PP links to point to unified policy/tems also add a link to the b.android.com issue for reporting doc issues and open footer links in a new window issue: 5931704" into ics-mr1
2012-01-31 14:24:54 -08:00
Scott Main
35e8c99869
docs: update TOS and PP links to point to unified policy/tems
...
also add a link to the b.android.com issue for reporting doc issues
and open footer links in a new window
issue: 5931704
Change-Id: Icd6e9b7fb742b05a3c2064b6f2f7767b5b7ed1d8
2012-01-31 11:20:24 -08:00
The Android Automerger
a925a6e2a5
IMM26B
2012-01-30 23:40:32 -08:00
The Android Automerger
ba00f9e491
IMM26
2012-01-30 23:38:52 -08:00
The Android Automerger
424e71c5a7
IMM26B
2012-01-30 23:33:57 -08:00
The Android Automerger
527c773f5d
merge in ics-mr1-release history after reset to ics-mr1
2012-01-30 23:33:21 -08:00
Scott Main
324b3a8bc5
am a20557fb: am 2032e319: docs: add schema.org sitenavigation scope for sid-navs
...
* commit 'a20557fb4ddb3f008caf7bdb920c9ab90945ef7f':
docs: add schema.org sitenavigation scope for sid-navs
2012-01-30 17:24:54 -08:00
Scott Main
a20557fb4d
am 2032e319: docs: add schema.org sitenavigation scope for sid-navs
...
* commit '2032e31979d0708120b4785bad6ee19ee1c4dc0c':
docs: add schema.org sitenavigation scope for sid-navs
2012-01-30 17:23:02 -08:00
Scott Main
2032e31979
docs: add schema.org sitenavigation scope for sid-navs
...
Change-Id: I0952195223f93bda67af0b951c3a061fe92948ce
2012-01-30 16:26:41 -08:00
Scott Main
068dcde2e7
am 3728f56b: am 939c3f72: docs: modify css to support sidenav headings with span, instead of h2 because I suspect the h2 is sending mixed signals to search engines for result snippets
...
* commit '3728f56bc62f35d576b12180f5bbf33d0c83f00d':
docs: modify css to support sidenav headings with span, instead of h2 because I suspect the h2 is sending mixed signals to search engines for result snippets
2012-01-30 16:17:13 -08:00
Scott Main
3728f56bc6
am 939c3f72: docs: modify css to support sidenav headings with span, instead of h2 because I suspect the h2 is sending mixed signals to search engines for result snippets
...
* commit '939c3f72280fadbdc192b6bedd97555c2fcd4ef3':
docs: modify css to support sidenav headings with span, instead of h2 because I suspect the h2 is sending mixed signals to search engines for result snippets
2012-01-30 16:15:28 -08:00
Wink Saville
8d5610cd1b
Merge "Increase java heap size."
2012-01-30 15:42:28 -08:00
Wink Saville
29b3afaf79
Increase java heap size.
...
I got an Out of memory while compiling, Andreas Huber suggested that
increasing the heap size, which worked.
Change-Id: Id8293ef100ef814b0fe13aa6e1b891a36a2ee853
2012-01-30 15:30:10 -08:00
Scott Main
00bdc01845
am 1d5b7c54: am 3652a113: docs: add support for meta descriptions in the <head>
...
* commit '1d5b7c5490d256bdaa516db4aaed584e9f0d1469':
docs: add support for meta descriptions in the <head>
2012-01-30 15:28:24 -08:00
Scott Main
939c3f7228
docs: modify css to support sidenav headings with span, instead of h2
...
because I suspect the h2 is sending mixed signals to search engines for result snippets
Change-Id: I80f13774f25439efebcade1b9db41c005018d2aa
2012-01-30 15:17:45 -08:00
Scott Main
1d5b7c5490
am 3652a113: docs: add support for meta descriptions in the <head>
...
* commit '3652a113d1a099ece283e3154188f4a42958c298':
docs: add support for meta descriptions in the <head>
2012-01-30 15:14:44 -08:00
James Dong
98387a2485
Merge "Added libstagefright_soft_aacenc to all builds of all products"
2012-01-30 14:42:27 -08:00