OSDN Git Service

android-x86/build.git
10 years agoMerge "Fix parsing string parameters in BOARD_MKBOOTIMG_ARGS"
Ying Wang [Sat, 14 Sep 2013 00:41:30 +0000 (00:41 +0000)]
Merge "Fix parsing string parameters in BOARD_MKBOOTIMG_ARGS"

10 years agoMerge "Rename bin/clang to bin/analyzer"
Andrew Hsieh [Fri, 13 Sep 2013 17:32:08 +0000 (17:32 +0000)]
Merge "Rename bin/clang to bin/analyzer"

10 years agoRename bin/clang to bin/analyzer
Andrew Hsieh [Fri, 13 Sep 2013 07:49:39 +0000 (15:49 +0800)]
Rename bin/clang to bin/analyzer

Change-Id: Ie77018e4943823f7d0f18e9249f973a98ee3652a

10 years agoMerge "Add libcore.conscrypt tests back to CTS"
Kenny Root [Thu, 12 Sep 2013 18:53:38 +0000 (18:53 +0000)]
Merge "Add libcore.conscrypt tests back to CTS"

10 years agoAdd libcore.conscrypt tests back to CTS
Kenny Root [Thu, 5 Sep 2013 22:10:44 +0000 (15:10 -0700)]
Add libcore.conscrypt tests back to CTS

A reorganization of the libcore test jar files caused the Conscrypt
tests to be accidentally dropped from CTS. Add them back in their own
package.

(cherry picked from commit 69c00c9ee8e6f1d865db3bc61e16473bc64f7a28)

Bug: 10210673
Change-Id: I5ffc62736d3dab7e96e480c593e07d6c640b8950

10 years agoMerge "Add Junit4 to the classpath for CollectAllTests"
Kenny Root [Thu, 12 Sep 2013 05:26:01 +0000 (05:26 +0000)]
Merge "Add Junit4 to the classpath for CollectAllTests"

10 years agoMerge "Add "WITH_STATIC_ANALYZER=1 m/mm/mmm/mma/mmma ...""
Andrew Hsieh [Wed, 11 Sep 2013 00:07:27 +0000 (00:07 +0000)]
Merge "Add "WITH_STATIC_ANALYZER=1 m/mm/mmm/mma/mmma ...""

10 years agoAdd Junit4 to the classpath for CollectAllTests
Kenny Root [Wed, 11 Sep 2013 00:00:33 +0000 (17:00 -0700)]
Add Junit4 to the classpath for CollectAllTests

This is needed for CollectAllTests to work with Junit4 tests.

Change-Id: I5e339022220b8e40bcb12337a09f3615dad7d53c

10 years agoAdd "WITH_STATIC_ANALYZER=1 m/mm/mmm/mma/mmma ..."
Andrew Hsieh [Tue, 10 Sep 2013 09:37:14 +0000 (17:37 +0800)]
Add "WITH_STATIC_ANALYZER=1 m/mm/mmm/mma/mmma ..."

The new option WITH_STATIC_ANALYZER=1 instructs build system to
run static analyzer via "clang --analyze" on a successful build.
If analyzer finds any issue, instruction to open report is displayed.
See http://clang-analyzer.llvm.org/scan-build.html for details.

WITH_STATIC_ANALYZER trumps WITH_SYNTAX_CHECK if both exist.

Project use lots of GCC extensions (eg. nested function) not supported
by clang may opt out by adding LOCAL_NO_STATIC_ANALYZER:=true

Change-Id: I9970560560bd52ce5f0fd7129c3488629627c735

10 years agoMerge "Add "WITH_SYNTAX_CHECK=1 make ...""
Andrew Hsieh [Wed, 4 Sep 2013 21:57:50 +0000 (21:57 +0000)]
Merge "Add "WITH_SYNTAX_CHECK=1 make ...""

10 years agoMerge "FDO: Only support locally"
Ying Wang [Wed, 4 Sep 2013 18:50:48 +0000 (18:50 +0000)]
Merge "FDO: Only support locally"

10 years agoAdd "WITH_SYNTAX_CHECK=1 make ..."
Andrew Hsieh [Tue, 27 Aug 2013 09:33:06 +0000 (17:33 +0800)]
Add "WITH_SYNTAX_CHECK=1 make ..."

The new option WITH_SYNTAX_CHECK=1 instructs build system to invoke
"clang -fsyntax-only" to utilize clang's better diagnostics before calling
LOCAL_CC/LOCAL_CXX for code generation.  The compilation time is slightly
longer, and the generated object file should be the same as w/o WITH_SYNTAX_CHECK

Project use lots of GCC extensions (eg. nested function) not supported
by clang may opt out by adding LOCAL_NO_SYNTAX_CHECK:=true

Change-Id: I5689586788ef049bd967364f71f31f1e359bd121

10 years agoFDO: Only support locally
synergydev [Wed, 14 Aug 2013 00:41:52 +0000 (17:41 -0700)]
FDO: Only support locally

The issues:
  - The size increase from utilizing FDO is quite large while
    utilizing runtime profiles in build.
  - By default, FDO is utilized globally if the target arch variant
    profiles exist.
  - Not all modules can show statistical significance in
    performance comparison, yet still suffer the size increase.

The solution:
  - Only enable FDO locally with LOCAL_FDO_SUPPORT
    for modules which may benefit enough to justify the size
    tradeoff.

Solution notes:
  - I've noted statistical significance in libwebcore and libskia
    thus far from utilizing FDO.
  - Analysis included sunspider, drawcanvas benchmarks, as
    well as gooda analysis on both arm and x86
  - To support runtime profile generation in modules which have
    LOCAL_FDO_SUPPORT specified,
    BUILD_FDO_INSTRUMENTATION is still used. Otherwise,
    if the target arch variant profiles exist, FDO is utilized for
    specified modules.

Change-Id: I7e95266943ff47c7d82b02e6200fd09911d0bb57

10 years agoMerge "Re-tighten default compiler options."
Ben Cheng [Wed, 28 Aug 2013 18:26:58 +0000 (18:26 +0000)]
Merge "Re-tighten default compiler options."

10 years agoRe-tighten default compiler options.
Ben Cheng [Wed, 28 Aug 2013 18:00:54 +0000 (11:00 -0700)]
Re-tighten default compiler options.

Remove "-Wno-unused-parameter -Wno-unused-but-set-parameter" added for
GCC 4.8 experiment.

BUG: 10495043
(cherry picked from internal master 1cea0755f400c1d183d22679d5b931c3a04ae4a4)

Change-Id: Ifa221709b1351a9268c06872e2b667138995c3da

10 years agoFix parsing string parameters in BOARD_MKBOOTIMG_ARGS
Jianxun Zhang [Wed, 17 Apr 2013 22:19:19 +0000 (15:19 -0700)]
Fix parsing string parameters in BOARD_MKBOOTIMG_ARGS

The existing logic in common.py breaks string arguments incorrectly:
e.g. --para1 val1 --para2 "val2 is a string" will be output as:

'--para', 'val1, '--para2', 'val2' 'is' 'a' 'string'

This will cause mkbootimg command fails due to the invalid arguments
generated from the wrong parsing.

The patch fixes this issue to get:

'--para', 'val1, '--para2', 'val2 is a string'

Change-Id: Ia34ec357550f11ae9d6adc719d86a0c6a9099fbc
Signed-off-by: Jianxun Zhang <jianxun.zhang@intel.com>
10 years agoMerge "Hmm, contrary to Deckard's assurances, this broke internally. Reverting."
Geremy Condra [Mon, 26 Aug 2013 21:45:52 +0000 (21:45 +0000)]
Merge "Hmm, contrary to Deckard's assurances, this broke internally. Reverting."

10 years agoHmm, contrary to Deckard's assurances, this broke internally. Reverting.
Geremy Condra [Mon, 26 Aug 2013 21:27:56 +0000 (21:27 +0000)]
Hmm, contrary to Deckard's assurances, this broke internally. Reverting.

Change-Id: I0d7892cd619e742fb5d6b1bda6d0dba7d6cd47bf

10 years agoMerge "Add sepolicy_version to PRODUCT_PACKAGES"
Geremy Condra [Mon, 26 Aug 2013 21:16:34 +0000 (21:16 +0000)]
Merge "Add sepolicy_version to PRODUCT_PACKAGES"

10 years agoAdd sepolicy_version to PRODUCT_PACKAGES
William Roberts [Sat, 11 May 2013 18:21:18 +0000 (11:21 -0700)]
Add sepolicy_version to PRODUCT_PACKAGES

Change-Id: I3d2652dd594d272507c0a1485e21227149ee4af7
Signed-off-by: William Roberts <wroberts@tresys.com>
10 years agoMerge "Adding the missing audio files into the SDK system image"
Ying Wang [Wed, 21 Aug 2013 19:42:14 +0000 (19:42 +0000)]
Merge "Adding the missing audio files into the SDK system image"

10 years agoMerge "[MIPS] Add support for MXU instructions for Ingenic builds."
Ying Wang [Mon, 19 Aug 2013 23:16:27 +0000 (23:16 +0000)]
Merge "[MIPS] Add support for MXU instructions for Ingenic builds."

10 years agoMerge "mkbootimg: Support custom mkbootimg implementation"
Ying Wang [Mon, 19 Aug 2013 21:24:07 +0000 (21:24 +0000)]
Merge "mkbootimg: Support custom mkbootimg implementation"

10 years ago[MIPS] Add support for MXU instructions for Ingenic builds.
Pete Delaney [Fri, 16 Aug 2013 01:26:14 +0000 (18:26 -0700)]
[MIPS] Add support for MXU instructions for Ingenic builds.

This enables an Ingenic build to use MXU asm instructions.
MXU support was just recently added:

    ASM: https://android-review.googlesource.com/63701
    GCC: https://android-review.googlesource.com/63702
    BIN: https://android-review.googlesource.com/#/c/63704/

Change-Id: I2b60567a689efa70ec064dfbb0f241a6bc61aed1
Signed-off-by: Pete Delaney <piet.delaney@imgtec.com>
10 years agoMerge "Add missing LOCAL_ADDITIONAL_DEPENDENCIES dependency to BUILD_PREBUILT."
Ying Wang [Wed, 14 Aug 2013 01:25:05 +0000 (01:25 +0000)]
Merge "Add missing LOCAL_ADDITIONAL_DEPENDENCIES dependency to BUILD_PREBUILT."

10 years agoAdd missing LOCAL_ADDITIONAL_DEPENDENCIES dependency to BUILD_PREBUILT.
Elliott Hughes [Wed, 14 Aug 2013 00:05:34 +0000 (17:05 -0700)]
Add missing LOCAL_ADDITIONAL_DEPENDENCIES dependency to BUILD_PREBUILT.

Change-Id: Id7c0e77110653e618d783026cd4b4aeadb3c45ec

10 years agoMerge "Prepare upcoming GCC 4.8 release."
Ying Wang [Tue, 13 Aug 2013 21:59:26 +0000 (21:59 +0000)]
Merge "Prepare upcoming GCC 4.8 release."

10 years agoPrepare upcoming GCC 4.8 release.
Ben Cheng [Tue, 13 Aug 2013 21:38:15 +0000 (14:38 -0700)]
Prepare upcoming GCC 4.8 release.

o Add -Wno-unused-parameter -Wno-unused-but-set-parameter to suppress
  new warnings.
o Define GCC_COLORS to enable colorful diagnostic messages.

Change-Id: Icbd62300b0e6f39d4e514edec2431a06b4d72421
(cherry picked from internal commit ccd8e6082b5b1e519a75068fa6c887a1a85b53c4)

10 years agoMerge "FDO: support linux-x86 target"
Ying Wang [Tue, 13 Aug 2013 17:38:36 +0000 (17:38 +0000)]
Merge "FDO: support linux-x86 target"

10 years agomkbootimg: Support custom mkbootimg implementation
Bjorn Andersson [Mon, 26 Nov 2012 00:53:44 +0000 (16:53 -0800)]
mkbootimg: Support custom mkbootimg implementation

Support using custom mkbootimg to allow boards to specify custom
boot image formats. Also export this as the environment variable
MKBOOTIMG to the *_from_target_files releasetools scripts.

Change-Id: I2084273b1175de097fb7da5c4f2264ea8014d74f
Signed-off-by: Bjorn Andersson <bjorn.andersson@sonymobile.com>
10 years agoFDO: support linux-x86 target
synergydev [Thu, 8 Aug 2013 20:08:26 +0000 (13:08 -0700)]
FDO: support linux-x86 target

Change-Id: I4a3a1d298176da109df316cf9128f19e77490bc9

10 years agoMerge "Link PRIVATE_TARGET_FDO_LIB before shared libraries"
Ying Wang [Fri, 9 Aug 2013 20:33:10 +0000 (20:33 +0000)]
Merge "Link PRIVATE_TARGET_FDO_LIB before shared libraries"

10 years agoMerge "Modify release tools to replace certs in MMAC files."
Ying Wang [Fri, 9 Aug 2013 19:42:09 +0000 (19:42 +0000)]
Merge "Modify release tools to replace certs in MMAC files."

10 years agoModify release tools to replace certs in MMAC files.
Robert Craig [Fri, 19 Apr 2013 14:59:22 +0000 (10:59 -0400)]
Modify release tools to replace certs in MMAC files.

Added support to perform a string replace of specified
dev keys with release keys when using the release tool
scripts.

Change-Id: Id0e945b0d62720c41f5ca9764a00de4bcdecaab4
Signed-off-by: rpcraig <rpcraig@tycho.ncsc.mil>
11 years agoMerge "FDO: do not support host modules"
Ying Wang [Thu, 8 Aug 2013 18:54:20 +0000 (18:54 +0000)]
Merge "FDO: do not support host modules"

11 years agoLink PRIVATE_TARGET_FDO_LIB before shared libraries
synergydev [Wed, 7 Aug 2013 07:00:39 +0000 (00:00 -0700)]
Link PRIVATE_TARGET_FDO_LIB before shared libraries

For global declaration of FDO profile generation and usage,
we need to link PRIVATE_TARGET_FDO_LIB (libgcov.a by default)
prior to linking shared libraries.

TARGET_FDO_LIB is set if feedback directed optimizations
are in use, so we do not need to worry about consistent size
increases from this change.

Change-Id: I543903f58893816f037c9466f31b19dfe822fdf4

11 years agoAdding the missing audio files into the SDK system image
Jun Tian [Tue, 6 Aug 2013 02:27:48 +0000 (10:27 +0800)]
Adding the missing audio files into the SDK system image

The system audio files are not included in the SDK image makefile.
It causes the audio effects cannot be played in the SDK image.
It also fixed lots of error messages in the logcat.

Change-Id: I1670b2b9e4f8fe6709cd68b8e792e2f8c289876f

11 years agoFDO: do not support host modules
synergydev [Mon, 5 Aug 2013 09:44:37 +0000 (02:44 -0700)]
FDO: do not support host modules

Summary:
If built with BUILD_FDO_INSTRUMENT alone, host modules will fail at runtime (during build)
due to failing to create /data in most standard unix user permission cases. If the user does
have full permission to /, /data/profile/ will be created and profiles will be generated there.
Any file generation in the Android Build System should be kept to $OUT.

This commit fixes this bug.

Test Plan:
Build with BUILD_FDO_INSTRUMENT without additional configuration, and host modules will no longer generate profiles
at their runtime.

11 years agoMerge "Remove BUILD_HOST_JAVA_LIBRARY dependency on aapt"
Ying Wang [Fri, 2 Aug 2013 17:53:15 +0000 (17:53 +0000)]
Merge "Remove BUILD_HOST_JAVA_LIBRARY dependency on aapt"

11 years agoRemove BUILD_HOST_JAVA_LIBRARY dependency on aapt
Brian Carlstrom [Fri, 2 Aug 2013 06:31:19 +0000 (23:31 -0700)]
Remove BUILD_HOST_JAVA_LIBRARY dependency on aapt

Change-Id: I8be48114b43e46255977be1677b0c0bbccdf9163

11 years agoMerge "Remove the bogus icu.dat dependency."
Elliott Hughes [Wed, 31 Jul 2013 22:35:47 +0000 (22:35 +0000)]
Merge "Remove the bogus icu.dat dependency."

11 years agoRemove the bogus icu.dat dependency.
Elliott Hughes [Wed, 31 Jul 2013 22:02:17 +0000 (15:02 -0700)]
Remove the bogus icu.dat dependency.

Simply depending on the icu4c libraries now pulls in the appropriate
data files for you.

Change-Id: Ied659584b2583c92d871c5823988ce0a865eabe4

11 years agoMerge "Added generic hook for loading vendor specific defintions"
Jean-Baptiste Queru [Tue, 30 Jul 2013 14:26:44 +0000 (14:26 +0000)]
Merge "Added generic hook for loading vendor specific defintions"

11 years agoAdded generic hook for loading vendor specific defintions
Marie Lennerhagen [Wed, 20 Oct 2010 11:41:59 +0000 (13:41 +0200)]
Added generic hook for loading vendor specific defintions

Change-Id: I6dec9c378ed0aabf9e60f8dcb05c6043bbcc30e5

11 years agoMerge "Allow proto builds to pass in java proto params."
Ying Wang [Thu, 25 Jul 2013 22:32:08 +0000 (22:32 +0000)]
Merge "Allow proto builds to pass in java proto params."

11 years agoAllow proto builds to pass in java proto params.
Ulas Kirazci [Thu, 25 Jul 2013 19:28:19 +0000 (12:28 -0700)]
Allow proto builds to pass in java proto params.

Change-Id: I65fe0cd96f818f59267da6159e6bd2ad28f07a11

11 years agoMerge "Revert "Allow proto builds to pass in java proto params.""
Ulas Kirazci [Thu, 25 Jul 2013 20:31:44 +0000 (20:31 +0000)]
Merge "Revert "Allow proto builds to pass in java proto params.""

11 years agoRevert "Allow proto builds to pass in java proto params."
Ulas Kirazci [Thu, 25 Jul 2013 19:35:28 +0000 (19:35 +0000)]
Revert "Allow proto builds to pass in java proto params."

This reverts commit 28b46fc16c026365378909f1cc88fad0d3b2395c.

Change-Id: Iaca9fa749c6f460911cc46e08e6b3ae2555b8bcc

11 years agoMerge "Change build id to OPENMASTER"
Jean-Baptiste Queru [Thu, 25 Jul 2013 16:01:45 +0000 (16:01 +0000)]
Merge "Change build id to OPENMASTER"

11 years agoChange build id to OPENMASTER
Chirayu Desai [Fri, 16 Nov 2012 11:41:17 +0000 (17:11 +0530)]
Change build id to OPENMASTER

Change-Id: Ib1b2ea0303619753dace8a776295ad4e1ceab096

11 years agoMerge "Allow proto builds to pass in java proto params."
Ulas Kirazci [Thu, 25 Jul 2013 03:04:10 +0000 (03:04 +0000)]
Merge "Allow proto builds to pass in java proto params."

11 years agoMerge "Use consistent search depth."
Ying Wang [Thu, 25 Jul 2013 01:54:44 +0000 (01:54 +0000)]
Merge "Use consistent search depth."

11 years agoAllow proto builds to pass in java proto params.
Ulas Kirazci [Wed, 24 Jul 2013 21:32:14 +0000 (14:32 -0700)]
Allow proto builds to pass in java proto params.

Also source files which have dependencies need to be bundled together
(at least the way the build system is set up now). Move
--proto_path=$(TOP) to the end so that it does not take precedence
over user-supplied --proto_path flags.

Change-Id: Ia532647fe8811d39230a23ba3671685b0388cbe0

11 years agoUse consistent search depth.
Guilhem IMBERTON [Thu, 4 Oct 2012 12:26:57 +0000 (14:26 +0200)]
Use consistent search depth.

AndroidProducts.mk allows for a maxdepth of 4 in device and vendor while
vendorsetup.sh and BoardConfig.mk only allow for smaller depth.

Make search depth consistent for these files.

Change-Id: I406770c1423d4f27fe097956a7c705a0da937e35
Signed-off-by: Beare, Bruce J <bruce.j.beare@intel.com>
Signed-off-by: Laurent Fert <laurent.fert@intel.com>
Signed-off-by: Guilhem Imberton <guilhem.imberton@intel.com>
Author: Laurent Fert <laurent.fert@intel.com>

11 years agoam a1f8cdf7: Merge "Allow several system property files"
Ying Wang [Thu, 18 Jul 2013 17:02:45 +0000 (10:02 -0700)]
am a1f8cdf7: Merge "Allow several system property files"

* commit 'a1f8cdf74bcc35110bd306d633e019a6279fc7fe':
  Allow several system property files

11 years agoMerge "Allow several system property files"
Ying Wang [Thu, 18 Jul 2013 17:00:19 +0000 (17:00 +0000)]
Merge "Allow several system property files"

11 years agoReconcile with jb-mr2-zeroday-release - do not merge
The Android Open Source Project [Tue, 16 Jul 2013 18:19:11 +0000 (11:19 -0700)]
Reconcile with jb-mr2-zeroday-release - do not merge

Change-Id: I8a36562b71e8ca51a52e9e893f3fb302ea414f24

11 years agoAllow several system property files
Johan Redestig [Thu, 12 Apr 2012 15:00:58 +0000 (17:00 +0200)]
Allow several system property files

TARGET_SYSTEM_PROP now is a list of files and all of them
are included in the build.prop.

Change-Id: I494f86412b0a299ee4c066e49ab4f4686bc2178a

11 years agoJSS15B
The Android Automerger [Tue, 16 Jul 2013 03:56:09 +0000 (20:56 -0700)]
JSS15B

11 years agoam d67d0227: Merge changes Id6de3e74,I1e96cbd7 into jb-mr2-dev
Scott Main [Mon, 15 Jul 2013 21:21:00 +0000 (14:21 -0700)]
am d67d0227: Merge changes Id6de3e74,I1e96cbd7 into jb-mr2-dev

* commit 'd67d02274da846184449ac02aba7eafdcba889b1':
  fix design/develop boxes float
  add style to add nexus 4 frame to screenshots

11 years agoMerge changes Id6de3e74,I1e96cbd7 into jb-mr2-dev
Scott Main [Mon, 15 Jul 2013 21:15:25 +0000 (21:15 +0000)]
Merge changes Id6de3e74,I1e96cbd7 into jb-mr2-dev

* changes:
  fix design/develop boxes float
  add style to add nexus 4 frame to screenshots

11 years agoReconcile with jb-mr2-zeroday-release - do not merge
The Android Open Source Project [Mon, 15 Jul 2013 16:32:27 +0000 (09:32 -0700)]
Reconcile with jb-mr2-zeroday-release - do not merge

Change-Id: I2c1659dba0eea86a4a76ee410608febbae466ef2

11 years agoam 988251c9: Fix error.
Ying Wang [Mon, 15 Jul 2013 16:01:59 +0000 (09:01 -0700)]
am 988251c9: Fix  error.

* commit '988251c92269676c891dcb548fecdc100755b431':
  Fix $(so_suffix) error.

11 years agoFix $(so_suffix) error.
Ying Wang [Mon, 15 Jul 2013 15:47:33 +0000 (08:47 -0700)]
Fix $(so_suffix) error.

Change-Id: I32cb4d4efe0a473e67a54c035df4dd82b6e4a3f0
(cherry picked from commit 80b71fa326e4b5d9510d528c8feb08e28376a350)

11 years ago"JSS15"
The Android Automerger [Mon, 15 Jul 2013 15:19:51 +0000 (08:19 -0700)]
"JSS15"

11 years agomerge in jb-mr2-zeroday-release history after reset to jb-mr2-dev
The Android Automerger [Mon, 15 Jul 2013 15:18:59 +0000 (08:18 -0700)]
merge in jb-mr2-zeroday-release history after reset to jb-mr2-dev

11 years agoReconcile with jb-mr2-zeroday-release - do not merge
The Android Open Source Project [Mon, 15 Jul 2013 14:35:31 +0000 (07:35 -0700)]
Reconcile with jb-mr2-zeroday-release - do not merge

Change-Id: Id93477c002befa42eda6aafe3a71323e28ca8ab0

11 years ago"JSS11I"
The Android Automerger [Sat, 13 Jul 2013 07:53:18 +0000 (00:53 -0700)]
"JSS11I"

11 years agoam ba9636d4: Establish the built module dependencies on prebuilt shared library
Ying Wang [Sat, 13 Jul 2013 05:34:46 +0000 (22:34 -0700)]
am ba9636d4: Establish the built module dependencies on prebuilt shared library

* commit 'ba9636d47fdc91c4caca6c9e0ad618956ddbb98b':
  Establish the built module dependencies on prebuilt shared library

11 years agoEstablish the built module dependencies on prebuilt shared library
Ying Wang [Sat, 13 Jul 2013 05:05:14 +0000 (22:05 -0700)]
Establish the built module dependencies on prebuilt shared library

This is needed because the linker command line uses -rpath-link with
built module path ($(*_OUT_INTERMEDIATE_LIBRARIES)) to search for indirect
dependency libraries.

Change-Id: I21d537c7c697dfb18df25d3d2bb7bffe2f9d370f
(cherry picked from commit ada8f296570e0bda93b433a7aa86ad138dd1705e)

11 years agoam a682f6db: am 4e132ca5: Merge "emulator: increase system partition to 550M"
Nick Kralevich [Sat, 13 Jul 2013 03:46:51 +0000 (20:46 -0700)]
am a682f6db: am 4e132ca5: Merge "emulator: increase system partition to 550M"

* commit 'a682f6db7b3e1259ce4abc829bd6763850565494':
  emulator: increase system partition to 550M

11 years agoam 4e132ca5: Merge "emulator: increase system partition to 550M"
Nick Kralevich [Sat, 13 Jul 2013 03:44:41 +0000 (20:44 -0700)]
am 4e132ca5: Merge "emulator: increase system partition to 550M"

* commit '4e132ca5e5c5048d7a95563eddd9f5ef11346678':
  emulator: increase system partition to 550M

11 years agoMerge "emulator: increase system partition to 550M"
Nick Kralevich [Sat, 13 Jul 2013 03:42:05 +0000 (03:42 +0000)]
Merge "emulator: increase system partition to 550M"

11 years agoemulator: increase system partition to 550M
Nick Kralevich [Sat, 13 Jul 2013 03:28:59 +0000 (20:28 -0700)]
emulator: increase system partition to 550M

Yes, 400M isn't enough. I can't believe it either.

Change-Id: I7d3857f04bfda472af6a281017204672bb9c9940

11 years agofix design/develop boxes float
Scott Main [Sat, 13 Jul 2013 02:22:24 +0000 (19:22 -0700)]
fix design/develop boxes float

Change-Id: Id6de3e74667f5cc485290509919e0f5cce689505

11 years ago"JSS11H"
The Android Automerger [Sat, 13 Jul 2013 01:49:06 +0000 (18:49 -0700)]
"JSS11H"

11 years ago"JSS11G"
The Android Automerger [Sat, 13 Jul 2013 00:10:48 +0000 (17:10 -0700)]
"JSS11G"

11 years agoam e9ee5e11: am 5411ef9c: Merge "emulator: increase system partition size to 400M"
Nick Kralevich [Fri, 12 Jul 2013 22:17:20 +0000 (15:17 -0700)]
am e9ee5e11: am 5411ef9c: Merge "emulator: increase system partition size to 400M"

* commit 'e9ee5e11b499f5be72b365585001e310b776d698':
  emulator: increase system partition size to 400M

11 years agoam 5411ef9c: Merge "emulator: increase system partition size to 400M"
Nick Kralevich [Fri, 12 Jul 2013 22:15:33 +0000 (15:15 -0700)]
am 5411ef9c: Merge "emulator: increase system partition size to 400M"

* commit '5411ef9cc4a4bf5c1950df89f2b2032edcf83dc8':
  emulator: increase system partition size to 400M

11 years agoMerge "emulator: increase system partition size to 400M"
Nick Kralevich [Fri, 12 Jul 2013 22:14:02 +0000 (22:14 +0000)]
Merge "emulator: increase system partition size to 400M"

11 years agoReconcile with jb-mr2-zeroday-release - do not merge
The Android Open Source Project [Fri, 12 Jul 2013 21:52:07 +0000 (14:52 -0700)]
Reconcile with jb-mr2-zeroday-release - do not merge

Change-Id: I2025eb92f81ab9ce86e3f894f3e25eb5ca4266ec

11 years agoemulator: increase system partition size to 400M
Nick Kralevich [Fri, 12 Jul 2013 20:44:48 +0000 (13:44 -0700)]
emulator: increase system partition size to 400M

300M is too small.

Change-Id: Icbe4e76d6e5c8a50cc6e6d74e324335bc66b8466

11 years agoJSS11F
The Android Automerger [Fri, 12 Jul 2013 19:19:57 +0000 (12:19 -0700)]
JSS11F

11 years agoam 6685bd01: am 2476ec99: Merge "use ext4 instead of yaffs for the emulator"
Ying Wang [Fri, 12 Jul 2013 18:12:49 +0000 (11:12 -0700)]
am 6685bd01: am 2476ec99: Merge "use ext4 instead of yaffs for the emulator"

* commit '6685bd01a953a550f0cebe342e9a1125adffd6b3':
  use ext4 instead of yaffs for the emulator

11 years agoam 2476ec99: Merge "use ext4 instead of yaffs for the emulator"
Ying Wang [Fri, 12 Jul 2013 18:11:56 +0000 (11:11 -0700)]
am 2476ec99: Merge "use ext4 instead of yaffs for the emulator"

* commit '2476ec994d449d31c89571723b4b17826639c1bf':
  use ext4 instead of yaffs for the emulator

11 years agoMerge "use ext4 instead of yaffs for the emulator"
Ying Wang [Fri, 12 Jul 2013 18:10:13 +0000 (18:10 +0000)]
Merge "use ext4 instead of yaffs for the emulator"

11 years ago"JSS11E"
The Android Automerger [Fri, 12 Jul 2013 17:53:23 +0000 (10:53 -0700)]
"JSS11E"

11 years agoReconcile with jb-mr2-zeroday-release - do not merge
The Android Open Source Project [Fri, 12 Jul 2013 14:27:32 +0000 (07:27 -0700)]
Reconcile with jb-mr2-zeroday-release - do not merge

Change-Id: I5f92acba878b1d0f149df1499cc09f3cda23f7e3

11 years agouse ext4 instead of yaffs for the emulator
Nick Kralevich [Wed, 10 Jul 2013 01:04:51 +0000 (18:04 -0700)]
use ext4 instead of yaffs for the emulator

Bug: https://code.google.com/p/android/issues/detail?id=38561
Change-Id: I7c605457b485d169654263caf55eb7d5a9a60c2e

11 years ago"JSS11D"
The Android Automerger [Fri, 12 Jul 2013 03:26:53 +0000 (20:26 -0700)]
"JSS11D"

11 years agoam a1b948af: am cbeb6e81: Merge "Include ping6 in all device builds"
Ying Wang [Fri, 12 Jul 2013 01:56:02 +0000 (18:56 -0700)]
am a1b948af: am cbeb6e81: Merge "Include ping6 in all device builds"

* commit 'a1b948afdb5a46e168cf59ea4045b63722ee8b47':
  Include ping6 in all device builds

11 years agoam cbeb6e81: Merge "Include ping6 in all device builds"
Ying Wang [Fri, 12 Jul 2013 01:52:19 +0000 (18:52 -0700)]
am cbeb6e81: Merge "Include ping6 in all device builds"

* commit 'cbeb6e81fe8faaa1c138ebe213d2b6e7fb0ad251':
  Include ping6 in all device builds

11 years agoJSS11C
The Android Automerger [Fri, 12 Jul 2013 01:41:43 +0000 (18:41 -0700)]
JSS11C

11 years ago"JSS11B"
The Android Automerger [Fri, 12 Jul 2013 00:12:16 +0000 (17:12 -0700)]
"JSS11B"

11 years agoMerge "Include ping6 in all device builds"
Ying Wang [Thu, 11 Jul 2013 19:08:48 +0000 (19:08 +0000)]
Merge "Include ping6 in all device builds"

11 years agoReconcile with jb-mr2-release jb-mr2-zeroday-release - do not merge
The Android Open Source Project [Thu, 11 Jul 2013 15:22:27 +0000 (08:22 -0700)]
Reconcile with jb-mr2-release jb-mr2-zeroday-release - do not merge

Change-Id: I5a556ab5d8ad80eb8bbff59784ea6bd1c23f7448

11 years ago"JSS11"
The Android Automerger [Thu, 11 Jul 2013 12:56:15 +0000 (05:56 -0700)]
"JSS11"

11 years agomerge in jb-mr2-zeroday-release history after reset to jb-mr2-dev
The Android Automerger [Thu, 11 Jul 2013 12:55:09 +0000 (05:55 -0700)]
merge in jb-mr2-zeroday-release history after reset to jb-mr2-dev

11 years agoInclude ping6 in all device builds
Lorenzo Colitti [Thu, 11 Jul 2013 03:54:05 +0000 (12:54 +0900)]
Include ping6 in all device builds

ping6 is currently only included in debug builds. Include it
everywhere, now that it doesn't need to be setuid any more.

Bug: 9469682
Change-Id: Ia78f6b0e5fc8f7042fb99cdb4a0add426bb56c7e

11 years ago"JWR66V"
The Android Automerger [Thu, 11 Jul 2013 01:34:56 +0000 (18:34 -0700)]
"JWR66V"