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

4322 Коммитов

Автор SHA1 Сообщение Дата
frankf@chromium.org 469fd5fdc7 [Android] Fix import error in browsertests/dispatch.py
NOTRY=True
TBR=nileshagrawal@chromium.org
BUG=

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204991 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-08 00:32:15 +00:00
sivachandra@chromium.org 9baabbd90d Add a new script bb_host_steps.py which handles all host side steps.
BUG=154525
NOTRY=True

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204970 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 23:14:39 +00:00
groby@chromium.org a6fa783a56 [rAC, OSX] Enable requestAutocomplet for OSX
Turns on requestAutocomplete behind a flag for OSX. Other implementations are still on by default. (OSX will be on by default when the UI has parity)

BUG=157274

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204936 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 21:38:38 +00:00
kkimlabs@chromium.org 198e305912 [Android] Skip generating v14 resources if already a version is specified.
If a version is already specified for resources, (e.g., layout-v20/), it shouldn't
be generating v14 compatible resource from it, because it's an explicit intention
to apply only to that version. The exception is for style resources due to the reason
explained at here https://codereview.chromium.org/16125003/.

BUG=247049

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204910 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 20:28:51 +00:00
jochen@chromium.org 2fdf6974c0 Stop running media layout tests as browser tests
R=jam@chromium.org,shadi@chromium.org
BUG=247459

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204813 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 13:39:42 +00:00
bulach@chromium.org a3f4ed5c97 Android: removes pylib.constants.CHROME_DIR.
Follow up from crrev.com/204357, it has now rolled downstream
so it's safe to remove the constant.

BUG=
TEST=

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204812 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 13:39:24 +00:00
cpu@chromium.org edeadf1ecb Revert 204698 "Run aura on the bots for a bit (take 2)"
> Run aura on the bots for a bit (take 2)
> 
> So we can see the perfbots for Aura.
> 
> BUG=none
> TEST=see the waterfall red
> 
> Review URL: https://codereview.chromium.org/16049016

TBR=cpu@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204716 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 05:37:03 +00:00
cpu@chromium.org a318863d1e Run aura on the bots for a bit (take 2)
So we can see the perfbots for Aura.

BUG=none
TEST=see the waterfall red

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204698 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 02:32:30 +00:00
scottmg@chromium.org 19af9a3254 Revert 204691 "Run aura on the bots for a bit"
Failed on runhooks (OS=win)

> Run aura on the bots for a bit
> 
> So we can see the perfbots for Aura.
> 
> 
> BUG=none
> TEST=see the waterfall red
> 
> Review URL: https://codereview.chromium.org/15789017

TBR=cpu@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204692 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 02:12:10 +00:00
cpu@chromium.org f2b24a74bc Run aura on the bots for a bit
So we can see the perfbots for Aura.


BUG=none
TEST=see the waterfall red

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204691 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 01:59:11 +00:00
bshe@chromium.org 58d69492a6 Add use_spring_wallpaper flag for Spring default wallpaper
BUG=247072

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204682 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 00:55:20 +00:00
skyostil@chromium.org 31a36bca7c Android: support glob-style gtest filters with content browser tests
This patch makes it possible to use glob-style gtest filters with
the content browser tests. An example of such a filter is
WebGLConformanceTest.*, which should cause all the WebGL conformance
tests to be run.

Previously the gtest filter was passed directly to the test executable,
causing it to run all matching tests successively in the same process.
Normally this would be fine, but with content browsertests we must run
each test in a fresh process to avoid issues with double initialization.

The fix is to expand the filter to a flat list of tests in the test
dispatcher. After this, the tests are sharded and run in exactly the
same way as when no gtest filter is provided.

BUG=138226

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204680 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-07 00:50:14 +00:00
scherkus@chromium.org 40fe9d6ad1 Enable MediaSourceTest.* content_browsertests on Android.
Sprinkling a little command line flag magic reveals these tests actually pass!

BUG=243843

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204634 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-06 22:44:08 +00:00
bulach@chromium.org e2e48ad7b8 Android / Telemetry: make surface_stats_collector more robust.
Rather than failing the entire test suite, report empty data when
surface stats is unavailable.

BUG=246730

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204593 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-06 21:10:34 +00:00
dpranke@chromium.org 3a921ebf15 remove webkit.gyp (and the test_shell target) and update affected targets
We had some old dummy targets left over in webkit.gyp that were used when
we had to jump through hoops to build webkit-related targets. We don't need
these any more.

We also don't need the dummy test_shell target, as no builder should be
trying to build test_shell directly at this point.

R=darin@chromium.org, jamesr@chromium.org
BUG=247105

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204565 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-06 20:05:52 +00:00
groby@chromium.org a52524dfe9 Fixed accidental build enable.
R=dbeam@chromium.org
BUG=

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204516 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-06 16:27:31 +00:00
bulach@chromium.org df2043b890 Android: renames pylib.constants.CHROME_DIR to DIR_SOURCE_ROOT.
Following comments from https://codereview.chromium.org/14882007/,
let's keep it consistent with base/base_paths.

BUG=
TEST=

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204357 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-05 23:28:09 +00:00
michaelbai@chromium.org 5fd094a7ab Main changes are
- Rename ContentVideoViewContextDelegate to ContentVideoViewClient, instead of having the getContext() method, passing the context to ContentVideoView when it is created.

- Add getContentVideoViewClient method in ContentViewClient, so it will be created when it actually used.



BUG=http://b/8315237

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204353 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-05 23:26:35 +00:00
thestig@chromium.org e85443ba8b Dummy whitespace change to kick the bots.
git-svn-id: http://src.chromium.org/svn/trunk/src/build@204352 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-05 23:10:54 +00:00
phajdan.jr@chromium.org 2059d6d6a7 Update remaining files after move of Linux installer
to the public repo.

BUG=246404
R=thestig@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204351 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-05 23:07:43 +00:00
phajdan.jr@chromium.org 7580a99947 Fix build with harfbuzz-0.9.18
See https://bugs.gentoo.org/show_bug.cgi?id=472416 .

BUG=none
R=thestig@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204345 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-05 21:40:43 +00:00
bulach@chromium.org 551095c595 Android: allows using adb from a chromium checkout without envsetup.sh
Following comments on https://chromiumcodereview.appspot.com/15891002,
rather than setting the path in pylib.__init__, set it via constants and android_commands.py.
Note that android_commands calls into third_party/android_testrunner, which then
uses adb directly, so it still needs to tweak os.environ.path.

BUG=242960
TEST=./build/android/run_tests.py -s cc_perftests

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204341 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-05 21:16:21 +00:00
xians@chromium.org 39e271dc40 Removed the IsRecordingInProcess check for speech since it is not needed.
The check is wrong since other clients doing capturing should not prevent speech start recording.

BUG=238800
TEST=goto www.corp.google.com/~dou/audio/audio_speech_crash/speech_input.html, the speech recognizer should work on ChromeOS
R=dalecurtis@chromium.org, joi@chromium.org, primiano@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204260 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-05 14:56:15 +00:00
navabi@google.com f2ee63ec18 Use full path to apk install script and CheckInstall apk.
Allows device status check to be run from any directory after envsetup.sh has
been run. Also fix for declaring fail_step_lst when there are no online devices.

TBR=cmp@chromium.org
BUG=

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204208 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-05 08:22:45 +00:00
adamk@chromium.org d424926059 Prepare gyp_chromium for moving Source/core/core.gyp/core.gyp up a directory
This adds a new import path for pymod_do_main (and removes an old one).
After core.gyp moves up a directory, the old path can be removed.

R=abarth@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204115 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-05 01:19:36 +00:00
pasko@chromium.org f827de2a8c AndroidPerf: log max CPU index when running tests
BUG=246515

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204098 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-05 00:16:38 +00:00
thakis@chromium.org f7205563db whitespace change to trigger bots
BUG=none
TBR=sreeram

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204050 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-04 21:46:32 +00:00
navabi@google.com 15d1a1ddf8 This is a less aggressive patch than the description below. The original was reverted for breaking the Android tests bot (https://codereview.chromium.org/16299003).
Removes check install step and moves it into the device status check. This will allow us to examine Android install speeds, which have recently caused timeout problems when installing large APK's. Unlike the original CL, low install speed only causes a warning (i.e. does not fail the step). The step fails if the battery of an online device is less than 5%.

BUG=230970, 224004, 242237

---------------------------------------------------
Original CL:
Move CheckInstall to device status and fail on low install speed and battery.

Removes the recently added CheckInstall step and moves the checking to the
device status check step. Recently, devices will install very slowly causing
tests to fail with device problems. We have also seen battery issues. The new
device status check step will fail if any devices install unreasonably slow
(i.e. < 800 KB/s) or have critically low battery level (i.e. < 5%).

BUG=230970, 224004, 242237

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

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@204013 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-04 19:19:46 +00:00
ilevy@chromium.org 7bcd0abbf9 Add src configuration for Android user build bot
This bot will run tests on an unrooted phone.

Clean up bb_run_bot.py
- use default args for BotConfig objects
- exclusively use slave props for extra_gyp_defines

BUG=236409
NOTRY=True

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203853 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-04 05:54:12 +00:00
szager@chromium.org 3f48589309 Kick builders
BUG=

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203787 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-03 23:07:30 +00:00
justinlin@chromium.org 8d10053b9a Disable DeferredImageDecoderTest.drawScaledIntoSkPicture until blink roll.
NOTRY=true

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203783 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-03 22:16:48 +00:00
tfarina@chromium.org a02f571ff1 Roll DEPS for googleurl. Second try.
- Update all the references from build/temp_gyp/googleurl.gyp to url/url.gyp.

r184: Fix C++11 compilation on iOS
r185: Forward includes to url/

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

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203672 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-03 05:40:29 +00:00
tfarina@chromium.org f2ea0ef38f device: Restructure the layout of gyp files.
This follow the same structure used by ui/keyboard/.

Now the directory hierachy looks like this:

device/bluetooth/bluetooth.gyp
device/bluetooth/bluetooth_strings.gyp
device/bluetooth/bluetooth_strings.grd
device/bluetooth/strings
device/usb/usb.gyp

R=bryeung@chromium.org,miket@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203652 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-03 00:22:30 +00:00
glider@chromium.org 5ad5d4a241 Use the default 'component' setting for Mac ASan builds (i.e. 'shared_library')
This had become possible after the switch to ASan dynamic runtime.

BUG=145503
R=thakis

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203628 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-02 21:25:12 +00:00
cmp@chromium.org db52108ca2 Whitespace change to test commit queue.
TBR=cmp@chromium.org
NOTRY=true

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203620 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-02 19:28:02 +00:00
cmp@chromium.org 70d18510bb Whitespace change to start builds.
git-svn-id: http://src.chromium.org/svn/trunk/src/build@203611 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-02 18:34:13 +00:00
justinlin@chromium.org 81dba6dddf Revert 203587 "Move CheckInstall to device status and fail on lo..."
Broke android tests.

> Move CheckInstall to device status and fail on low install speed and battery.
> 
> Removes the recently added CheckInstall step and moves the checking to the
> device status check step. Recently, devices will install very slowly causing
> tests to fail with device problems. We have also seen battery issues. The new
> device status check step will fail if any devices install unreasonably slow
> (i.e. < 800 KB/s) or have critically low battery level (i.e. < 5%).
> 
> BUG=230970, 224004, 242237
> 
> Review URL: https://chromiumcodereview.appspot.com/16110005

TBR=navabi@google.com
Review URL: https://codereview.chromium.org/16299003

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203594 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-01 06:42:15 +00:00
navabi@google.com b5ff01f371 Move CheckInstall to device status and fail on low install speed and battery.
Removes the recently added CheckInstall step and moves the checking to the
device status check step. Recently, devices will install very slowly causing
tests to fail with device problems. We have also seen battery issues. The new
device status check step will fail if any devices install unreasonably slow
(i.e. < 800 KB/s) or have critically low battery level (i.e. < 5%).

BUG=230970, 224004, 242237

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203587 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-06-01 04:55:00 +00:00
pkasting@chromium.org a541882fea Support cygwin in sanitize-png-files.sh.
BUG=245882
TEST=Script still works correctly
R=oshima@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203517 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-31 23:59:00 +00:00
jamesr@chromium.org 7e9af401ec Make webkit_user_agent a standalone gyp
There's no reason for the webkit user_agent target to be included from
webkit_support.gyp, doing so just makes life really confusing and makes it
easier to accidentally introduce gyp cycles. This makes webkit_user_agent.gyp
a normal standalone gyp file.

BUG=245477

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203493 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-31 22:31:47 +00:00
phajdan.jr@chromium.org 37f0db60a4 Reconfigure fyi-tests-dbg-ics-gn to do a local build
as opposed to downloading a Lucid build.

BUG=175998
R=ilevy@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203481 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-31 21:31:10 +00:00
mnaganov@chromium.org d5583b58c2 Generate and use LASTCHANGE for blink
The main reason for making this change is the fact that when pulling
Chromium and Blink code into Android, we have to make automatic changes
to the repository (for example, for generating *.mk files), and the Blink
commit we have as HEAD doesn't match any public commit in the main 
Blink repo. While via the LASTCHANGE file we could report a publicly 
visible revision.

Also, the way webkit_version.h header is generated now appears to be silly.
First, it doesn't leverage enough existing tools. Second, as it is noted in
webkit_user_agent.gypi, it is broken for incremental builds.

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203387 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-31 10:53:39 +00:00
pan.deng@intel.com c5159963db Fix ResourceLoadTiming Resolution Issue 4th step - remove unused macros from common.gypi
This is the 4th step to fix ResourceLoadTiming resolution issue, as chromium and blink part
has been already smoothly switched to double resolution timestamps in ResourceLoadTiming, provisional
macros can be removed now.

Contributed by pan.deng@intel.com

BUG=242452

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203373 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-31 09:08:39 +00:00
jamesr@chromium.org 6d335aaf84 Revert "Move C++ code from webkit/tools/test_shell to webkit/support"
This reverts commit e522cf7889669bfd5153a2d32ac47246bcee2883.

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203243 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-30 22:35:53 +00:00
jamesr@chromium.org 9ce8280835 Move C++ code from webkit/tools/test_shell to webkit/support
This code is simple/test/mock implementations of APIs to use in DumpRenderTree,
webkit_unit_tests, and various other bits of unit test code around the codebase.
Nothing here is used for test_shell since there is no test_shell any more.

This moves the code to webkit/support/ along with the rest of DRT/w_u_t support
code. Hopefully we'll be able to delete most of this soon along with
DumpRenderTree. In the meantime this simplifies webkit/

R=darin@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203242 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-30 22:25:46 +00:00
kkimlabs@chromium.org 321aafd7a8 [Android] Raise a compile time error if style resource is under values/
Using paddingStart in style resource under values/ will cause crashes
on certain devices (crbug.com/243794). So Raise an error at compile time
if style resource exists under values/.

BUG=243952

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203229 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-30 21:38:59 +00:00
thakis@chromium.org 81bdfd0221 clang: Turn on C++11 on CrOs too.
This was blocked on the main waterfall linux_chromeos_clang bot migrating
to precise, which has happened now.

I believe all bots that build chromeos with clang are on precise now. If any
turns red, this CL should be reverted.

BUG=none
R=ajwong@chromium.org

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

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203221 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-30 21:13:44 +00:00
dmazzoni@chromium.org cd535bb37b Add Pause and Resume to Web TTS & Extension TTS APIs
The web speech spec already includes pause and resume, this
completes the implementation. For parity, this change also adds
support for Pause and Resume to Chrome's TTS extension API
and TTS Engine extension APIs.

BUG=171887

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203146 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-30 15:17:21 +00:00
blundell@chromium.org c5b55922f8 Introduce the iOS consumer API.
The purpose of this API is to make the iOS port less vulnerable to bustage
during merges while in the process of upstreaming (see
https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-components-technical-approach).

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203144 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-30 15:09:32 +00:00
torne@chromium.org ce220bdd17 Android WebView: add empty jarjar ruleset.
We don't have any jarjar rules yet, but add the empty file now in order
that the downstream build can enable jarjar. This way, when rules are
added later it will just work, instead of breaking the downstream build
temporarily.

Also, make sure that when a jarjar rule file is being used, it's
considered as an input to the JNI generator step, to make sure the JNI
header files get regenerated when the rules change.

BUG=

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@203141 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-05-30 14:16:12 +00:00