Commit graph

1158 commits

Author SHA1 Message Date
David 'Digit' Turner
e870a487d6 am 002d1c24: am 31597999: Merge change I2edfb71d into eclair
Merge commit '002d1c24b4dee2582e660f80669176c4a3e2db33' into eclair-mr2-plus-aosp

* commit '002d1c24b4dee2582e660f80669176c4a3e2db33':
  Support secondary CPU ABI in build.prop
2009-11-11 18:15:08 -08:00
David 'Digit' Turner
002d1c24b4 am 31597999: Merge change I2edfb71d into eclair
Merge commit '31597999a61c6b58b8f8b903f5f228a6ca07183f' into eclair-mr2

* commit '31597999a61c6b58b8f8b903f5f228a6ca07183f':
  Support secondary CPU ABI in build.prop
2009-11-11 18:12:06 -08:00
Android (Google) Code Review
31597999a6 Merge change I2edfb71d into eclair
* changes:
  Support secondary CPU ABI in build.prop
2009-11-11 18:08:03 -08:00
Steve Block
4ceee01781 am 6ef2c375: Merge change I2bba1884 into eclair-mr2
Merge commit '6ef2c3759bf7ec457b86335bc2e06c6e6328fc24' into eclair-mr2-plus-aosp

* commit '6ef2c3759bf7ec457b86335bc2e06c6e6328fc24':
  Clean libwebkit, libjs and libv8 after WebKit merge.
2009-11-10 15:21:48 -08:00
Android (Google) Code Review
6ef2c3759b Merge change I2bba1884 into eclair-mr2
* changes:
  Clean libwebkit, libjs and libv8 after WebKit merge.
2009-11-10 14:54:04 -08:00
Doug Zongker
4cc57b40fc am d628eaca: am f17e6387: allow use of unzip version 6.0
Merge commit 'd628eacae7af10c520df98323250b385212270ca' into eclair-mr2-plus-aosp

* commit 'd628eacae7af10c520df98323250b385212270ca':
  allow use of unzip version 6.0
2009-11-10 14:52:07 -08:00
Doug Zongker
d628eacae7 am f17e6387: allow use of unzip version 6.0
Merge commit 'f17e63879c9356d107bda7f8d599f7ce5f449051' into eclair-mr2

* commit 'f17e63879c9356d107bda7f8d599f7ce5f449051':
  allow use of unzip version 6.0
2009-11-10 12:33:31 -08:00
Doug Zongker
f17e63879c allow use of unzip version 6.0
Unzip 6.0 changes the name of the fourth column in the "unzip -lv"
output from "Ratio" to "Cmpr".  Allow either name so that
dump-package-stats works with both unzip 5 and unzip 6.
2009-11-09 18:19:48 -08:00
Steve Block
3be0640ad1 Clean libwebkit, libjs and libv8 after WebKit merge.
Change-Id: I2bba18843aa31b849de53e047dceb40de5eccc8a
2009-11-10 02:17:14 +00:00
Xavier Ducrohet
ebbb0d45d7 am 38c09a03: am 216faf3f: Add Livewallpapers picker to SDK.
Merge commit '38c09a03195bbfee94b887ca6b1b8da3d79a4841' into eclair-mr2-plus-aosp

* commit '38c09a03195bbfee94b887ca6b1b8da3d79a4841':
  Add Livewallpapers picker to SDK.
2009-11-09 12:14:45 -08:00
Xavier Ducrohet
a6f2b44709 am 07cca294: am 58302409: Add CertInstaller to the SDK.
Merge commit '07cca294a362450a5fc86e372d77503daab11eb1' into eclair-mr2-plus-aosp

* commit '07cca294a362450a5fc86e372d77503daab11eb1':
  Add CertInstaller to the SDK.
2009-11-09 12:14:42 -08:00
Xavier Ducrohet
38c09a0319 am 216faf3f: Add Livewallpapers picker to SDK.
Merge commit '216faf3f1c2c8857ad7e88e860897766c830ce31' into eclair-mr2

* commit '216faf3f1c2c8857ad7e88e860897766c830ce31':
  Add Livewallpapers picker to SDK.
2009-11-09 11:59:56 -08:00
Xavier Ducrohet
07cca294a3 am 58302409: Add CertInstaller to the SDK.
Merge commit '58302409dd88d10e5c0ab03e5c5b5729ca41111a' into eclair-mr2

* commit '58302409dd88d10e5c0ab03e5c5b5729ca41111a':
  Add CertInstaller to the SDK.
2009-11-09 11:59:51 -08:00
Jean-Baptiste Queru
e1b710a5ba merge from open-source master 2009-11-09 10:34:27 -08:00
Xavier Ducrohet
216faf3f1c Add Livewallpapers picker to SDK.
Change-Id: If14c073c13b13bdd042e2a48aa867f4fa2be7572
2009-11-08 15:42:25 -08:00
Android Code Review
61a147e3a6 Merge change I6d9c9295
* changes:
  Added a default to specify an alternative tool chain prefix if needed.
2009-11-08 14:17:01 -08:00
Xavier Ducrohet
58302409dd Add CertInstaller to the SDK.
Change-Id: I1e680d24080a6514e2dc049d64e570f8cd759dd7
2009-11-06 18:21:32 -08:00
David 'Digit' Turner
2edfb71d01 Support secondary CPU ABI in build.prop
BoardConfig.mk typically defines TARGET_CPU_ABI to the name of the
native machine code CPU ABI supported by the target device. For example,
existing devices today use the value 'armeabi' corresponding to an
ARMv5TE instruction set with soft-float implementation.

This patch allows this file to also define TARGET_CPU_ABI2 to name
a secondary (minor) CPU ABI also supported by the device. This is useful
when the main ABI is ARMv7-A (identified as 'armeabi-v7a') which also
supports ARMv5TE. Such devices should have TARGET_CPU_ABI defined to
'armeabi-v7a' and TARGET_CPU_ABI2 defined to 'armeabi'.

TARGET_CPU_ABI2 will be translated into the ro.product.cpu.abi2 property
in build.prop. This value will be used by the PackageManager to handle
"fat-binaries" generated with the NDK.
2009-11-06 15:12:00 -08:00
Mike Reed
ebed06a259 am 65a731b7: Merge change I8dd26ee4 into eclair-mr2
Merge commit '65a731b737bd6e8afa0b18176064dcc130dbb4ce' into eclair-mr2-plus-aosp

* commit '65a731b737bd6e8afa0b18176064dcc130dbb4ce':
  remove reference to SK_RELEASE, since that is automatically set based on NDEBUG (or its absence)
2009-11-06 11:24:37 -08:00
Android (Google) Code Review
65a731b737 Merge change I8dd26ee4 into eclair-mr2
* changes:
  remove reference to SK_RELEASE, since that is automatically set based on NDEBUG (or its absence)
2009-11-06 14:16:37 -05:00
akushner
ceb18f8923 Added prune options to findleaves.sh to ignore the .git and .repo
directories since the Android.mk files will not be found in these
directories.

Prunning out these directories decreased the make parse by nearly
a minute on a cold cache and eliminated 60,000+ stats on files in
the .git and .repo directories.
2009-11-05 12:49:27 -08:00
Fred Quintana
6f007cf96c am aa82f8ee: am 357f5bc8: Merge change I7397e6fe into eclair
Merge commit 'aa82f8ee8f747e4466f3f6754201765a2b5b3707' into eclair-mr2-plus-aosp

* commit 'aa82f8ee8f747e4466f3f6754201765a2b5b3707':
  add the new accounts and sync package to the generic target and enable sync for all builds
2009-11-05 11:49:53 -08:00
Fred Quintana
aa82f8ee8f am 357f5bc8: Merge change I7397e6fe into eclair
Merge commit '357f5bc804fc80f06776e1da141e4b322d7e3248' into eclair-mr2

* commit '357f5bc804fc80f06776e1da141e4b322d7e3248':
  add the new accounts and sync package to the generic target and enable sync for all builds
2009-11-05 11:23:44 -08:00
Android (Google) Code Review
357f5bc804 Merge change I7397e6fe into eclair
* changes:
  add the new accounts and sync package to the generic target and enable sync for all builds
2009-11-05 14:15:58 -05:00
Steve Block
06c3a04ef4 am 5243b109: WebKit clean required by move of V8 to external/v8.
Merge commit '5243b109acec2b03431aef36ccc42256b77ae316' into eclair-mr2-plus-aosp

* commit '5243b109acec2b03431aef36ccc42256b77ae316':
  WebKit clean required by move of V8 to external/v8.
2009-11-04 23:33:28 -08:00
Steve Block
5243b109ac WebKit clean required by move of V8 to external/v8.
Change-Id: Idc425e143c928a7da39af9a002705699e3e12901
2009-11-05 07:07:03 +00:00
Android Code Review
617c402c71 Merge change I377f1f02
* changes:
  Update prelink map for libFLAC
2009-11-04 09:17:13 -08:00
Scott Main
47f77397be am 747f2997: am 24fbbfaa: am 3f7d1df1: docs: revise resizing scripts to better organize the tasks into chunks that are only executed when necessary.
Merge commit '747f2997f1ddeac97090ce1d94d04eed9cffc529' into eclair-mr2-plus-aosp

* commit '747f2997f1ddeac97090ce1d94d04eed9cffc529':
  docs: revise resizing scripts to better organize the
2009-11-03 19:22:34 -08:00
Scott Main
747f2997f1 am 24fbbfaa: am 3f7d1df1: docs: revise resizing scripts to better organize the tasks into chunks that are only executed when necessary.
Merge commit '24fbbfaa80ce17481e695c001b66c0176b8f0f00' into eclair-mr2

* commit '24fbbfaa80ce17481e695c001b66c0176b8f0f00':
  docs: revise resizing scripts to better organize the
2009-11-03 19:12:40 -08:00
Scott Main
24fbbfaa80 am 3f7d1df1: docs: revise resizing scripts to better organize the tasks into chunks that are only executed when necessary.
Merge commit '3f7d1df12938b6db9849b03c05d5a56784ee147b' into eclair

* commit '3f7d1df12938b6db9849b03c05d5a56784ee147b':
  docs: revise resizing scripts to better organize the
2009-11-03 19:04:40 -08:00
Fred Quintana
170e1d59f6 add the new accounts and sync package to the generic target and enable sync for all builds 2009-11-03 16:05:03 -08:00
Scott Main
3f7d1df129 docs: revise resizing scripts to better organize the
tasks into chunks that are only executed when necessary.

Move the stuff that does the reference panel resizing
into a separate method because this should only happen when
literally resizing the panels. This thus resolves the problem
in which an invalid cookie would sometimes be written during
a normal window resize event -- there's no need to write that
cookie unless the user literally resizes the panel.

There's no need to call resizeWidth all the time, the doc-content
div can manage its width by inheritence and should only ever have
to resize its left margin when the side nav is manually resized or
when the page is loaded (in order to account for a saved side nav
width). This vastly improves the performance and visual quality
when resizing. However, IE6 still requires this in order for the scrollbars
to be visible in the content area. So a flag is now set when IE6 is
the browser, it has its own onresize method
and the width is defined only for IE6.

Inside resizeHeight, check what the href path is before doing any
resizing, just to make sure we don't do unecessary work and to
make the code more readable.
2009-11-02 20:06:04 -08:00
Scott Main
034a10891f am 4d3aa886: am ec4194ef: am 64b879ac: docs: fix js error when there\'s no api level cookie saved.
Merge commit '4d3aa886dbafcc76e0a5fa6b947a98395beb836e' into eclair-mr2-plus-aosp

* commit '4d3aa886dbafcc76e0a5fa6b947a98395beb836e':
  docs: fix js error when there's no api level cookie saved.
2009-11-02 18:59:08 -08:00
Scott Main
4d3aa886db am ec4194ef: am 64b879ac: docs: fix js error when there\'s no api level cookie saved.
Merge commit 'ec4194ef1baa2906f916a01e368bb5d6805ba245' into eclair-mr2

* commit 'ec4194ef1baa2906f916a01e368bb5d6805ba245':
  docs: fix js error when there's no api level cookie saved.
2009-11-02 18:50:09 -08:00
Scott Main
ec4194ef1b am 64b879ac: docs: fix js error when there\'s no api level cookie saved.
Merge commit '64b879ac5bbabe0489869f76b3a20f26aca6ce22' into eclair

* commit '64b879ac5bbabe0489869f76b3a20f26aca6ce22':
  docs: fix js error when there's no api level cookie saved.
2009-11-02 18:40:23 -08:00
Scott Main
64b879ac5b docs: fix js error when there's no api level cookie saved.
currently, if there's no api level cookie saved, then
the selectedLevelItem variable will be undefined and will
throw an error at the end of the buildApilevelSelector function.
Now, userApiLevel is set to the max level in this case.
2009-11-02 18:05:41 -08:00
Scott Main
8d89f800ce am 3f08740b: am 32b505d9: am 8e44ae9c: docs: fix IE6 bug in which tabs are not focusable while in the reference. also increase the minimum width for the header to avoid line-wrapping of the tabs.
Merge commit '3f08740b0c2146f0fa1ce90b8e4ab9dcd09c4348' into eclair-mr2-plus-aosp

* commit '3f08740b0c2146f0fa1ce90b8e4ab9dcd09c4348':
  docs: fix IE6 bug in which tabs are not focusable
2009-10-30 15:25:01 -07:00
Scott Main
3f08740b0c am 32b505d9: am 8e44ae9c: docs: fix IE6 bug in which tabs are not focusable while in the reference. also increase the minimum width for the header to avoid line-wrapping of the tabs.
Merge commit '32b505d984ed15156b87482f849b865892b57ac2' into eclair-mr2

* commit '32b505d984ed15156b87482f849b865892b57ac2':
  docs: fix IE6 bug in which tabs are not focusable
2009-10-30 15:15:14 -07:00
Scott Main
32b505d984 am 8e44ae9c: docs: fix IE6 bug in which tabs are not focusable while in the reference. also increase the minimum width for the header to avoid line-wrapping of the tabs.
Merge commit '8e44ae9c762785d80e54bc75e2ba353f486414ec' into eclair

* commit '8e44ae9c762785d80e54bc75e2ba353f486414ec':
  docs: fix IE6 bug in which tabs are not focusable
2009-10-30 15:04:17 -07:00
Scott Main
8e44ae9c76 docs: fix IE6 bug in which tabs are not focusable
while in the reference. also increase the minimum
width for the header to avoid line-wrapping of the tabs.
2009-10-30 13:33:39 -07:00
Mike Reed
8dd26ee452 remove reference to SK_RELEASE, since that is automatically set based on NDEBUG (or its absence)
i.e. if NDEBUG is defined, then SK_RELEASE will get defined in the skia config headers
2009-10-30 08:32:28 -04:00
Dan Egnor
b4df557ed9 am d1850e73: Fix incremental build break in openssl.
Merge commit 'd1850e739b0e6d5f788349db0bddb8277757f800' into eclair-mr2-plus-aosp

* commit 'd1850e739b0e6d5f788349db0bddb8277757f800':
  Fix incremental build break in openssl.
2009-10-29 13:15:33 -07:00
Dan Egnor
d1850e739b Fix incremental build break in openssl. 2009-10-29 13:05:27 -07:00
Scott Main
4ffcb76344 am df0ca900: am a7d1eaf5: am 9b5fdb9c: docs: add checkbox to toggle the api level filter on and off; this includes some function renaming for the related scripts.
Merge commit 'df0ca90073b6a1ad432791661c481dc7bd34c21f' into eclair-mr2-plus-aosp

* commit 'df0ca90073b6a1ad432791661c481dc7bd34c21f':
  docs: add checkbox to toggle the api level filter on and off;
2009-10-29 01:51:53 -07:00
Scott Main
df0ca90073 am a7d1eaf5: am 9b5fdb9c: docs: add checkbox to toggle the api level filter on and off; this includes some function renaming for the related scripts.
Merge commit 'a7d1eaf572e391ed0e4ba6c39c02804ad0c1e14e' into eclair-mr2

* commit 'a7d1eaf572e391ed0e4ba6c39c02804ad0c1e14e':
  docs: add checkbox to toggle the api level filter on and off;
2009-10-29 01:25:23 -07:00
Dan Egnor
eda684a266 am a6b495ce: Clean frameworks after replacing IDropBox.aidl with IDropBoxService.aidl, which causes some build confusion with dependencies and Parcelables and so on.
Merge commit 'a6b495ce40f640f581e27ebd8d935d706daa9f2d' into eclair-mr2-plus-aosp

* commit 'a6b495ce40f640f581e27ebd8d935d706daa9f2d':
  Clean frameworks after replacing IDropBox.aidl with
2009-10-28 17:22:05 -07:00
android-build SharedAccount
01e7a68fd0 am 8a5d5272: resolved conflicts for merge of 3fa11599 to eclair-mr2
Merge commit '8a5d527223414c3c23b8021eb8ed468d3299e968' into eclair-mr2-plus-aosp

* commit '8a5d527223414c3c23b8021eb8ed468d3299e968':
  Bump version to 2.1 API 6.
2009-10-28 17:21:53 -07:00
Dan Egnor
a6b495ce40 Clean frameworks after replacing IDropBox.aidl with
IDropBoxService.aidl, which causes some build confusion
with dependencies and Parcelables and so on.

(Will be checked in immediately after the change in question)
2009-10-28 16:25:47 -07:00
android-build SharedAccount
8a5d527223 resolved conflicts for merge of 3fa11599 to eclair-mr2 2009-10-28 16:12:11 -07:00
Jean-Baptiste Queru
110dd46414 merge from open-source master 2009-10-28 14:57:01 -07:00