Граф коммитов

4322 Коммитов

Автор SHA1 Сообщение Дата
tfarina@chromium.org c159595028 components/webdata: Break the dependency on chrome/test/base
BUG=181277
TBR=joi@chromium.org

Review URL: https://codereview.chromium.org/17788002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@209071 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-28 02:19:34 +00:00
grunell@chromium.org e4943135d1 Adding WebRTC log upload list under chrome://webrtc-logs
CL for writing to the file that lists the uploaded logs:
https://codereview.chromium.org/17589014/

BUG=254329

Review URL: https://chromiumcodereview.appspot.com/17063004

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208910 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-27 14:17:04 +00:00
benm@chromium.org 7a87488d52 Don't set MIPS specific target arch CFLAGS for android WebView
These flags are set by the android build system in the case of
an android webview build, so don't attempt to reset them.

BUG=

Review URL: https://chromiumcodereview.appspot.com/17956002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208907 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-27 12:58:34 +00:00
sivachandra@chromium.org acae236b73 [Android] Add a flag to skip provisioning check during device status check.
This is required for a downstream bot which builds Android from source and flashes it with every build.

Review URL: https://chromiumcodereview.appspot.com/17893011

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208902 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-27 12:47:18 +00:00
ilevy@chromium.org 176ec5ec93 Whitespace CL
Whitespace CL to kick bots (no code changes).

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208647 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-26 06:12:22 +00:00
ilevy@chromium.org 7b9ae3886c Whitespace CL
Whitespace CL to kick bots (no code changes).

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208646 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-26 06:06:20 +00:00
ilevy@chromium.org 538bb87dbc Whitespace CL
Whitespace CL to kick bots (no code changes).

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208603 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-26 03:09:57 +00:00
cjhopman@chromium.org ba517b8506 [Android] Support building standalone APK in component build
Many people's workflows assume that they can install the APK created in
out/Debug/apks. With the component build that APK is actually an
"incomplete" APK that cannot be manually installed (or rather causes
obscure errors when manually installed).

This change does two things. First, it moves the "incomplete" APK
output to out/Debug/<package_name>/<ApkName>.apk. This should prevent
accidental installs of the "incomplete" APK. Second, it introduces an
option (create_standalone_apk) that when doing a component build, if
set, will merge the shared libraries into the "incomplete" APK to
create a standalone APK. This standalone APK will be created in
out/Debug/apks/.

Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=207345

Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=207516

Review URL: https://chromiumcodereview.appspot.com/14843017

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208529 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-25 18:42:07 +00:00
sievers@chromium.org f95796af59 Disable PageStateSerializationTest.BackwardsCompat_v11
BUG=254034

Review URL: https://codereview.chromium.org/17719002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208528 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-25 18:41:26 +00:00
wjia@chromium.org 750459f031 Move create_standalone_apk.py into build/android/gyp/.
The create_standalone_apk.py should be in build/android/gyp/.

TBR=cjhopman@chromium.org

Review URL: https://codereview.chromium.org/17637005

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208378 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-25 03:27:48 +00:00
darin@chromium.org f23ed67f05 Re-implement PageState serialization without a Blink API dependency.
WebHistoryItem serialization is now split into two parts.  PageState (i.e., encoded string)to ExplodedPageState, and ExplodedPageState to WebHistoryItem.  This way we can generate ExplodedPageState in the browser process without a dependency on Blink API.

This CL drops support for version 1-10 of the format.  I confirmed with laforge@ that the usage of such old versions of Chrome is minimal enough.

I've included code to extract file paths from the "document state" vector of strings.  This code just has to be consistent with the way document state was generated in versions 11 through 13 of the format.  Version 14 has the file path vector included directly in the serialized data.

Gone is the serializers ability to write out different versions of the format.  That code existed to support testing as we would write out old versions and test our ability to read them.  Instead, I've captured some serialized snapshots at different versions, and I just test that we can read them.  I've included code for generating a snapshot as a test case that by default returns early.  (This way the code doesn't bit-rot.)

R=jamesr@chromium.org,tsepez@chromium.org
BUG=237243

Review URL: https://chromiumcodereview.appspot.com/16867005

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208367 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-25 03:10:24 +00:00
wjia@chromium.org 22e10e1e19 Fix check_perms for r208246
Reland https://codereview.chromium.org/17569006/ with check_perms fix.

Support using loadable module for libpeerconnection on Android.

Borrowed create_standalone_apk_action.gypi, create_standalone_apk.py and finalize_apk_action.gypi from https://codereview.chromium.org/14843017/ with some minor fix in create_standalone_apk_action.gypi.

For some cases where libpeerconnection needs to be a loadable module, we need to add libpeerconnection.so into Chrome_apk.
This patch takes 2 steps:
1. build chrome with libpeer_target_type=loadable_module.
2. add libpeerconnection.so into the apk file.

TEST=run gyp: GYP_DEFINES="$GYP_DEFINES libpeer_target_type=loadable_module" build/gyp_chromium
build chrome
re-run gyp: GYP_DEFINES="$GYP_DEFINES libpeer_target_type=loadable_module" CHROMIUM_GYP_FILE="build/android/chrome_with_libs.gyp" build/gyp_chromium
build chrome_with_libs
install Chrome-with-libs.apk and it works for https://apprtc.appspot.com

Review URL: https://codereview.chromium.org/17647002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208304 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-24 23:44:40 +00:00
abodenha@chromium.org 3ee66a772b Revert 208246 "Support using loadable module for libpeerconnecti..."
Caused check_perms failure on Linux ChromiumOS.
See http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20Full/builds/21371

> Support using loadable module for libpeerconnection on Android.
> 
> Borrowed create_standalone_apk_action.gypi, create_standalone_apk.py and finalize_apk_action.gypi from https://codereview.chromium.org/14843017/ with some minor fix in create_standalone_apk_action.gypi.
> 
> For some cases where libpeerconnection needs to be a loadable module, we need to add libpeerconnection.so into Chrome_apk.
> This patch takes 2 steps:
> 1. build chrome with libpeer_target_type=loadable_module.
> 2. add libpeerconnection.so into the apk file.
> 
> TEST=run gyp: GYP_DEFINES="$GYP_DEFINES libpeer_target_type=loadable_module" build/gyp_chromium
>      build chrome
>      re-run gyp: GYP_DEFINES="$GYP_DEFINES libpeer_target_type=loadable_module" CHROMIUM_GYP_FILE="build/android/chrome_with_libs.gyp" build/gyp_chromium
>      build chrome_with_libs
>      install Chrome-with-libs.apk and it works for https://apprtc.appspot.com
> 
> R=cjhopman@chromium.org, mallinath@chromium.org, tommi@chromium.org
> 
> Review URL: https://codereview.chromium.org/17569006

TBR=wjia@chromium.org

Review URL: https://codereview.chromium.org/17573017

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208285 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-24 22:58:03 +00:00
wjia@chromium.org e13c37b8d0 Support using loadable module for libpeerconnection on Android.
Borrowed create_standalone_apk_action.gypi, create_standalone_apk.py and finalize_apk_action.gypi from https://codereview.chromium.org/14843017/ with some minor fix in create_standalone_apk_action.gypi.

For some cases where libpeerconnection needs to be a loadable module, we need to add libpeerconnection.so into Chrome_apk.
This patch takes 2 steps:
1. build chrome with libpeer_target_type=loadable_module.
2. add libpeerconnection.so into the apk file.

TEST=run gyp: GYP_DEFINES="$GYP_DEFINES libpeer_target_type=loadable_module" build/gyp_chromium
     build chrome
     re-run gyp: GYP_DEFINES="$GYP_DEFINES libpeer_target_type=loadable_module" CHROMIUM_GYP_FILE="build/android/chrome_with_libs.gyp" build/gyp_chromium
     build chrome_with_libs
     install Chrome-with-libs.apk and it works for https://apprtc.appspot.com

R=cjhopman@chromium.org, mallinath@chromium.org, tommi@chromium.org

Review URL: https://codereview.chromium.org/17569006

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208246 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-24 18:54:11 +00:00
apatrick@chromium.org 51f3a9d7f6 Reland 206804.
Pull ANGLE from new git repository, mirrored on chromium.googlesource.com.

Switch references to ANGLE repository to use the new directory in third_party.

BUG=247158,247490

Review URL: https://chromiumcodereview.appspot.com/17155023

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208191 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-24 10:40:26 +00:00
dmikurube@chromium.org 626bf5b3a7 Add 'profiling_full_stack_frames' build option not to optimize out stack frames when profiling.
It enables the heap-profiler in Release builds.

BUG=252560
R=phajdan.jr@chromium.org

Review URL: https://codereview.chromium.org/17115015

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208127 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-23 14:17:58 +00:00
navabi@google.com f23eaf8c99 Turn off devices with low battery and don't fail device status step.
BUG=224004

Review URL: https://chromiumcodereview.appspot.com/16950029

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208088 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-22 21:05:50 +00:00
tfarina@chromium.org 01951e5533 Time to kill googleurl.gyp
Now that Blink has rolled into chromium we can move on and remove googleurl.gyp
from build/temp_gyp!

BUG=229660
R=thestig@chromium.org,darin@chromium.org

Review URL: https://chromiumcodereview.appspot.com/17335013

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208034 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-22 14:20:10 +00:00
frankf@chromium.org ea8da93716 [Android] Do not fail if adb push returns no output.
This is the case for empty files.

BUG=

Review URL: https://chromiumcodereview.appspot.com/17561002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@208015 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-22 07:07:36 +00:00
gkanwar@google.com 82ccaa9576 The ADT bundle link was 404'ing. This updates the link to the newer version of the ADT bundle which is up on the Android site.
BUG=252776

Review URL: https://chromiumcodereview.appspot.com/16867011

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207980 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-22 00:45:25 +00:00
mostynb@opera.com 63539b4fe6 allow unofficial builds with DCHECK and DLOG disabled
Previously, it was not possible to produce unofficial builds without
DCHECKS and DLOGS.

Review URL: https://chromiumcodereview.appspot.com/17165003

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207826 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-21 15:24:00 +00:00
isherman@chromium.org 8b6e57134d [Autofill] Update credit card type detection logic.
* Remove Solo card support, as Solo cards have been decommissioned permanently since March 31, 2011.
* Update the BIN range for DiscoverCard to include 644-649.
* Correct the BIN ranges for Diner's Club and JCB cards.
* Add test coverage

BUG=246497
TEST=CreditCardTest.GetCreditCardType
R=estade@chromium.org
TBR=joi@chromium.org

Review URL: https://chromiumcodereview.appspot.com/16254010

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207809 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-21 14:30:25 +00:00
bulach@chromium.org 9e1c1b5236 Android / Telemetry: use android-chromium-testshell instead of content-shell.
Follow up on https://codereview.chromium.org/15115005/
Install ChromiumTestShell instead of ContentShell

BUG=237057
R=ilevy@chromium.org

Review URL: https://codereview.chromium.org/15448002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207779 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-21 10:01:08 +00:00
navabi@google.com 945b5aa823 Create sdcard image for emulator.
The emulator bot currently fails when waiting for the sdcard. The emulator does
not fail when the emulator has an sdcard image present. This CL creates and adds
the sdcard image for emulators.

TBR=cmp@chromium.org
BUG=164911

Review URL: https://chromiumcodereview.appspot.com/17094019

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207760 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-21 08:59:20 +00:00
skyostil@chromium.org 177d7747cd android: Always initialize 'log' variable
Always initialize the 'log' variable to avoid an unbound local error
when dealing with exceptions.

Review URL: https://chromiumcodereview.appspot.com/17484004

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207648 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-21 00:02:49 +00:00
frankf@chromium.org 41346e07f3 [Android] Log the size of data transerred to device.
BUG=252047
NOTRY=True

Review URL: https://chromiumcodereview.appspot.com/17463008

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207641 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 23:47:25 +00:00
lliabraa@chromium.org 98bec227e5 Remove unnecessary Xcode setting for iOS builds.
The line being removed in this CL was originally added to prevent iOS
builds from compiling for multiple archs. Since then, the VALID_ARCHS
setting was added which accomplishes the same thing.

BUG=None

Review URL: https://chromiumcodereview.appspot.com/16831022

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207588 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 21:45:47 +00:00
dfalcantara@chromium.org 458e6b0e2b Revert "[Android] Support building standalone APK in component build"
This breaks the Android component build.

This reverts commit 125e64a9eb6406446fb864aea9fa887521f19616.
>> [Android] Support building standalone APK in component build
>>
>> Many people's workflows assume that they can install the APK created in
>> out/Debug/apks. With the component build that APK is actually an
>> "incomplete" APK that cannot be manually installed (or rather causes
>> obscure errors when manually installed).
>>
>> This change does two things. First, it moves the "incomplete" APK
>> output to out/Debug/<package_name>/<ApkName>.apk. This should prevent
>> accidental installs of the "incomplete" APK. Second, it introduces an
>> option (create_standalone_apk) that when doing a component build, if
>> set, will merge the shared libraries into the "incomplete" APK to
>> create a standalone APK. This standalone APK will be created in
>> out/Debug/apks/.
>>
>> Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=207345
>>
>> Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=207516

BUG=
R=cjhopman@chromium.org

Review URL: https://codereview.chromium.org/17291013

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207587 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 21:42:06 +00:00
tedchoc@chromium.org 33a0c60572 Print a nicer error if installing an APK fails when you have not run adb root.
BUG=

Review URL: https://chromiumcodereview.appspot.com/17335010

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207585 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 21:37:03 +00:00
cjhopman@chromium.org f00dfb88a8 [Android] Support building standalone APK in component build
Many people's workflows assume that they can install the APK created in
out/Debug/apks. With the component build that APK is actually an
"incomplete" APK that cannot be manually installed (or rather causes
obscure errors when manually installed).

This change does two things. First, it moves the "incomplete" APK
output to out/Debug/<package_name>/<ApkName>.apk. This should prevent
accidental installs of the "incomplete" APK. Second, it introduces an
option (create_standalone_apk) that when doing a component build, if
set, will merge the shared libraries into the "incomplete" APK to
create a standalone APK. This standalone APK will be created in
out/Debug/apks/.

Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=207345

Review URL: https://chromiumcodereview.appspot.com/14843017

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207516 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 19:51:29 +00:00
ananta@chromium.org 5ec5fe429f Adding content_shell to the dependencies in the chromium_builder_tests target.
Some trybots bots, e.g. linux_clang, run webkit_tests, which use content_shell.
The bot only builds chromium_builder_tests. Since content_shell wasn't part of
this, webkit_tests didn't run an up-to-date content_shell binary on that bot,
which led to problems e.g. in try run
http://build.chromium.org/p/tryserver.chromium/builders/linux_clang/builds/117825/ on
cl https://codereview.chromium.org/17420005/.

Add content_shell to chromium_builder_tests to fix this.

BUG=237249
R=thakis@chromium.org

Review URL: https://codereview.chromium.org/17397011

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207486 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 18:19:58 +00:00
skyostil@google.com 283725629a Revert 207345 "[Android] Support building standalone APK in comp..."
This broke building of ChromeTest.apk. See:

http://chromegw.corp.google.com/i/clank.tot/builders/instrumentation-yakju-clankium-tot/builds/11555/steps/chrome_smoke_instrumentation_tests/logs/stdio

> [Android] Support building standalone APK in component build
> 
> Many people's workflows assume that they can install the APK created in
> out/Debug/apks. With the component build that APK is actually an
> "incomplete" APK that cannot be manually installed (or rather causes
> obscure errors when manually installed).
> 
> This change does two things. First, it moves the "incomplete" APK
> output to out/Debug/<package_name>/<ApkName>.apk. This should prevent
> accidental installs of the "incomplete" APK. Second, it introduces an
> option (create_standalone_apk) that when doing a component build, if
> set, will merge the shared libraries into the "incomplete" APK to
> create a standalone APK. This standalone APK will be created in
> out/Debug/apks/.
> 
> Review URL: https://chromiumcodereview.appspot.com/14843017

TBR=cjhopman@chromium.org

Review URL: https://codereview.chromium.org/17484010

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207439 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 15:31:28 +00:00
ericwilligers@chromium.org ca2c32e94a Allow for lists of lists when summarizing performance results
Using page-repeat and pageset-repeat options in commands like
tools/perf/run_measurement --browser=release --page-repeat=2 --pageset-repeat=3 blink_perf third_party/WebKit/PerformanceTests/Parser/html-parser.html
previously let to a crash in _MeanAndStdDevFromList.

BUG=

Review URL: https://chromiumcodereview.appspot.com/17390017

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207426 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 14:02:41 +00:00
chrisha@chromium.org b90756c95d Disable large address aware mode for SyzyASAN builds.
SyzyASAN requires double the shadow memory to accomodate this change, which would incur a significantly higher OOM rate for canary channel users.

This reverts https://codereview.chromium.org/17029013/ when 'asan=1' is defined.

BUG=https://code.google.com/p/sawbuck/issues/detail?id=72
BUG=239803

Review URL: https://chromiumcodereview.appspot.com/17348007

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207398 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 10:47:43 +00:00
frankf@chromium.org 0b6cf35f21 [Android] Fix _WatchTestOutput after r207099
BUG=
NOTRY=True

Review URL: https://chromiumcodereview.appspot.com/17288008

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207387 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 10:17:32 +00:00
cjhopman@chromium.org 5f50a8a77e [Android] Add GetDescription and defer calculating device_utc_offset
First, only get the device's utc offset when it is actually needed. Calculating
this offset takes about 100ms on a typical device. The build scripts assume
that creating an instance of AndroidCommands is not so expensive. Instead,
defer calculating this value until it is actually requested. There are
currently several cases where the build scripts call adb directly instead of
through android_commands just to avoid this extra cost.

Second, add a GetDescription method to get a (mostly) user-readable description
of the device.

TBR=frankf@chromium.org

Review URL: https://chromiumcodereview.appspot.com/17088005

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207371 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 09:09:02 +00:00
cjhopman@chromium.org 7ad7e2169a [Android] Support building standalone APK in component build
Many people's workflows assume that they can install the APK created in
out/Debug/apks. With the component build that APK is actually an
"incomplete" APK that cannot be manually installed (or rather causes
obscure errors when manually installed).

This change does two things. First, it moves the "incomplete" APK
output to out/Debug/<package_name>/<ApkName>.apk. This should prevent
accidental installs of the "incomplete" APK. Second, it introduces an
option (create_standalone_apk) that when doing a component build, if
set, will merge the shared libraries into the "incomplete" APK to
create a standalone APK. This standalone APK will be created in
out/Debug/apks/.

Review URL: https://chromiumcodereview.appspot.com/14843017

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207345 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-20 07:58:19 +00:00
ilevy@chromium.org 3c91a7c8e5 Whitespace CL
Whitespace change to kick off builders

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207264 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-19 22:28:21 +00:00
ilevy@chromium.org df51def13d Whitespace CL
Whitespace change to kick off builders

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207263 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-19 22:16:22 +00:00
ilevy@chromium.org e803930f61 Whitespace CL
Whitespace change to kick off builders

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207261 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-19 21:47:36 +00:00
ilevy@chromium.org 432c048989 Whitespace CL
Whitespace change to kick off builders (no code changes).

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207257 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-19 20:15:03 +00:00
avi@chromium.org 01f1293105 Revert 207109 "Reland 206804."
The infrastructure can not depend on code.google.com at all, the slaves must never fetch from there.

> Reland 206804.
> 
> Pull ANGLE from new git repository.
> 
> Switch references to ANGLE repository to use the new directory in third_party.
> 
> TBR=kbr@chromium.org, piman@chromium.org
> 
> (for ui/compositor)
> 
> Review URL: https://codereview.chromium.org/16869007

TBR=apatrick@chromium.org

Review URL: https://codereview.chromium.org/17449008

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207244 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-19 15:19:53 +00:00
frankf@chromium.org b5f7fef472 [Android] Clear adb logcat during adb_logcat_monitor startup.
BUG=249039
NOTRY=True

Review URL: https://chromiumcodereview.appspot.com/17438004

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207175 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-19 04:06:26 +00:00
thestig@chromium.org fff8aa73bf Automatically exclude *_win_browsertest.* from non-Windows builds.
Review URL: https://chromiumcodereview.appspot.com/17009011

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207151 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-19 03:21:15 +00:00
apatrick@chromium.org 534a95ee6e Reland 206804.
Pull ANGLE from new git repository.

Switch references to ANGLE repository to use the new directory in third_party.

TBR=kbr@chromium.org, piman@chromium.org

(for ui/compositor)

Review URL: https://codereview.chromium.org/16869007

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207109 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-18 23:29:46 +00:00
frankf@chromium.org 07aa4d053f [Android] Fix pexpect ordering to get the correct logs.
TBR=craigdh@chromium.org
NOTRY=True
BUG=

Review URL: https://chromiumcodereview.appspot.com/17151015

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207099 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-18 22:39:08 +00:00
cevans@chromium.org fa8c603c66 Revert 206884 "Roll the partition allocator through the Win perf..."
> Roll the partition allocator through the Win perf bots.
> 
> (To be reverted.)
> 
> BUG=246860
> R=abarth@chromium.org
> 
> Review URL: https://codereview.chromium.org/17299003

TBR=cevans@chromium.org

Review URL: https://codereview.chromium.org/17391007

git-svn-id: http://src.chromium.org/svn/trunk/src/build@207056 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-18 19:24:27 +00:00
blundell@chromium.org 09532d0e05 In components/autofill, move common/ to core/common/
This change is part of moving autofill into its eventual structure of a layered
component. autofill/components/core/ is a new directory that will hold code
that is shared by all platforms (including iOS). This CL moves autofill/
components/common/ underneath this directory; a follow-up CL will move
autofill/components/browser underneath this directory as well.

This CL additionally imposes the correct DEPS restrictions on
autofill/components/core/, with temporary allowances for the current
violating includes.

TBR=joi, thakis, benm
BUG=247015

Review URL: https://chromiumcodereview.appspot.com/16879006

git-svn-id: http://src.chromium.org/svn/trunk/src/build@206994 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-18 14:52:13 +00:00
digit@chromium.org eacb40c9e0 adb_gdb: Minor improvements
This patch improves the Android-specific adb_gdb debugging scripts
in several minor ways:

- It ensures that the temporary directory is always removed when
  the script exits, even whe it is interrupted with Ctrl-C.

- It ensures that if --pull-libs is interrupted by a Ctrl-C,
  the build.prop in /tmp/$USER-adb-gdb-libs/ is erased, forcing
  a --pull-libs operation in the next invokation, instead of keeping
  a portion of the libraries in a bad state.

- It adds a --su-prefix=<prefix> option, to be able to use tools
  like 'su' on rooted production devices. This is useful when the
  installed app is not debuggable (e.g. a release build), and there
  is no way to run ADB as root.

BUG=NONE

Review URL: https://chromiumcodereview.appspot.com/17103007

git-svn-id: http://src.chromium.org/svn/trunk/src/build@206990 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-18 14:24:42 +00:00
scherkus@chromium.org 95c61febc4 Strip out \r characters from pexpect's log capture before adding the results.
BUG=250002

Review URL: https://chromiumcodereview.appspot.com/16854020

git-svn-id: http://src.chromium.org/svn/trunk/src/build@206960 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-18 12:49:52 +00:00