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

3641 Коммитов

Автор SHA1 Сообщение Дата
ilevy@chromium.org 7f2cf65754 Add android release trybot and tester configs
In preparation to moving release tester to main waterfall,
add zip_step to release builder.
Also adding release trybot configs at same time.
Some configs are implicit by using bot_id substring match.

BUG=164995,167393
TBR=yaron
NOTRY=True

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177357 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-17 05:33:23 +00:00
frankf@chromium.org 8f5ecb447e [Android] Move base tests classes to pylib/base
BUG=168727

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177252 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 23:18:42 +00:00
sivachandra@chromium.org efdca57e26 Add a presubmit check to check that a certain set of Android specific files only have deletions.
We want certain Android specific files, like findbugs_known_bugs.txt, to only have deletions (not even modifications to existing lines). The presubmit check added in this CL checks that a certain list of files only have deletions.


BUG=165608
NOTRY=True

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177241 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 22:52:22 +00:00
frankf@chromium.org afb3dd9ac0 [Android] Fix import in flakiness_dashboard_results_uploader.py.
BUG=

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177224 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 21:26:14 +00:00
yfriedman@chromium.org d84743abde [Android] Sever findbugs dependencies on environment variables.
Use pylib constants instead.

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177208 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 20:31:10 +00:00
oshima@chromium.org fc7399b062 Add -o option to optimize png file size
The optimize code is based on pngslim. A few steps are omitted, but it runs all other processes. I'll check if it
worth fixing them (for example, advdef didn't make much difference)

Using -o option requires new third party program: optpng, pngout and advdef.
The script asks to install if they're not installed. 

 So for, I've got ~30% reduction in ash/resources (it's probably because pngslim was never run on this directory), I'd expect less
on other places where pngslim was run before.

Print results

BUG=150046
TEST=none
NOTRY=true

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177202 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 20:15:53 +00:00
peter@chromium.org 2ab9ef7898 The flakiness dashboard uploader should be importable from WebKit checkouts.
Right now there's an assumption that WebKit lives in src/third_party/, but
this is not the case when run_tests.py is ran from a WebKit checkout.

BUG=170362

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177189 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 19:00:33 +00:00
frankf@chromium.org 5205e2c5a7 [Android] Upload instrumentation results to flakiness dashboard.
Upload to the staging server and only on the FYI bot.

BUG=150801
TEST=bb_run_bot_test.py

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177186 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 18:58:41 +00:00
newt@chromium.org e565093c2f Re-land "[Android] Generate localized strings.xml files at build time."
This generates localized strings.xml files (e.g.
values-fr/strings.xml) from grd and xtb files at build time. This
means we no longer need to check in localized strings.xml files. Note:
the xtb files are empty until translations are available.

Benefits:
 - 41 fewer extraneous results when grepping Java string IDs
 - Switching from maintaining strings in strings.xml over to using a
   grd file is One Trivial CL* away: just include English in the list
   of languages for which we generate strings.xml files.

*Restrictions may apply

Originally landed as https://codereview.chromium.org/11659006/
This can be re-landed as of https://codereview.chromium.org/11880050/

BUG=167248
TBR=yfriedman@chromium.org,thakis,jam@chromium.org,cjhopman,shashishekhar@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177170 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 17:54:42 +00:00
yfriedman@chromium.org d537080fb5 Move android gyp definitions to gyp
This removes unneeded gyp defines from envsetup. I still left the environment variables because some scripts (e.g. findbugs) still depend on them. I'll remove those usages and the environment variables separately.

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177169 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 17:45:57 +00:00
marja@chromium.org 78d7ba7e93 Telemetry & Android: fix stderr / stdout getting mixed.
The benchmarks first print results to stdout, then information about skipped /
failed page to stderr. The test runners also redirect both streams to the same
file. If stdout is not properly flushed, the stderr output might appear in the
middle of the stdout output, and this makes the log parser fail.

R=bulach
BUG=none

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177162 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 17:25:42 +00:00
aberent@chromium.org 80cbaedda8 Android: fix cpu governor setup for perf tests
The test code was incorrectly counting the number of CPUs, and hence was only
setting performance mode on, at most, n-1 of them. This meant that the
results of the perf tests (at least the startup tests) depended on how Chrome
distributed itself between CPUs.

BUG=163336

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177143 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 13:21:35 +00:00
skyostil@chromium.org 4abb690699 Re-enable ScrollingCoordinatorChromiumTest.touchOverflowScrolling on Android
The test was fixed by http://trac.webkit.org/changeset/139691 so we can
now turn it back on.

BUG=169975


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177142 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 13:21:23 +00:00
nileshagrawal@chromium.org 34d5033754 Android: Add content_browsertests to the list of compile targets
BUG=138275


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177119 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 09:42:28 +00:00
newt@chromium.org d42c015fc9 Specify location of resource_ids with DEPTH instead of GRIT_DIR.
This works around a MSVS bug which would change
'-f GRIT_DIR/../gritsettings/resource_ids' to '-f gritsettings/resource_ids'
and prepares for re-landing https://codereview.chromium.org/11659006/


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@177025 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-16 00:28:36 +00:00
torne@chromium.org 380d7b1df2 Add unsupported option to install-build-deps.
Add an option --unsupported to install-build-deps.sh which allows the
installation to be attempted on a system we don't support. Omit
mentioning this in the error, in the hope that anyone who can deal with
the fallout from this will find it in the script. Also, add GCEL
(Ubuntu-derived image used by Compute Engine) to the list of supported
systems.

BUG=

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176982 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-15 22:11:47 +00:00
yfriedman@chromium.org 8af4ad7f96 [Android] Remove some unneeded gyp defines.
These are crufy and not needed anymore. A follow-up will start pushing used defines into gyp.

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176971 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-15 21:13:32 +00:00
phajdan.jr@chromium.org a818303409 Linux: use generated shim headers for system mesa.
BUG=161389, 165264

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176926 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-15 17:34:31 +00:00
mseaborn@chromium.org edad9d25ca Compile Breakpad into Chromium by default on Linux
This brings the Linux build into line with the Windows and Mac builds,
where Breakpad is compiled in by default.  This allows us to test
Breakpad on the trybots and buildbots.

It's still possible to omit Breakpad support using a Gyp option.

As with Windows and Mac, we don't want to enable Breakpad in Chromium
at run time by default (since that would spam the crash server, which
doesn't have symbols for Chromium builds anyway), so we put this
behind a run time flag.  We also don't compile in debug info (-g) by
default.

We extend NaCl's Breakpad tests to be able to locate crash dumps on
Linux.

We add some "#ifdef GOOGLE_CHROME_BUILD"s to prevent Breakpad from
being enabled accidentally without the run time flag, but this is just
in case because there should be no GUI option for enabling stats/crash
reporting inside non-Chrome Chromium builds.

BUG=105778
TEST=breakpad_browser_process_crash_test in nacl_integration

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176911 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-15 16:13:10 +00:00
cjhopman@chromium.org 8dded3d1e2 Disable ScrollingCoordinatorChromiumTest.touchOverflowScrolling on Android
This has been failing for several weeks now.

BUG=169975
NOTRY=true


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176909 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-15 16:07:15 +00:00
marja@chromium.org 6cdf1c9c95 Telemetry (memory benchmark): Add histogram Memory.RendererUsed.
Also: handle empty histograms gracefully.

BUG=NONE
R=nduca
NOTRY=true


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176895 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-15 13:27:37 +00:00
frankf@google.com 9c75977ac9 [Android] Enable uploading instrumentation tests to flakiness dashboard.
This is the client-side change for uploading the following
instrumentation test types:

androidwebview_instrumentation_tests
chromiumtestshell_instrumentation_tests
contentshell_instrumentation_tests

Actuall uploading of results will first be done
on a staging server.

BUG=150801

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176758 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-14 23:59:38 +00:00
bulach@chromium.org f723f72bab Android: capture logcat for all devices on bb_run_sharded_steps.py
This will help track issues when running sharded steps, specially the perf ones.

BUG=165692
TEST=

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176754 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-14 23:23:35 +00:00
ilevy@chromium.org 2c869a1876 Fix PRESUBMIT.py for build/android/buildbot
The code was making a call to android_commands.py, which
relied on a copy of adb existing in the path.  The CQ
bot does not have third_party/android_tools, and in general
it seems advantageous to not require a full checkout for
syntax checks.

NOTRY=True

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176723 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-14 21:38:34 +00:00
ilevy@chromium.org dd38e6f4b1 Move android reboot step into python
This should move the last dependence on adb out of buildbot_functions.  Also includes various other android buildbot fixes:

- Start logcat monitor before reboot command to catch JB crash.
- Rename bb_tests to bb_device_steps.

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176651 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-14 10:37:12 +00:00
ilevy@chromium.org 2431f5e0c9 Move android gtest filter files into pylib dir
As part of a general refactor of build/android, clean up
gtest_filter by moving those files to a better location.

BUG=167331
NOTRY=true

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176649 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-14 10:23:32 +00:00
kaiwang@chromium.org 5d1fb05042 We are moving browser components (http://www.chromium.org/developers/design-documents/browser-components ) from src/content/components to src/components. So it does not make sense any more to keep components tests in content_unittests.
BUG=169312

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176643 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-14 08:08:59 +00:00
kristianm@chromium.org 7340b18b4c Findbugs fixes, removing fields that are never read from
BUG=


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176625 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-14 01:19:26 +00:00
kristianm@chromium.org ce41b95226 Findbugs issues
A test case with setUp() or tearDown() should call the super method

BUG=


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176597 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-12 22:10:28 +00:00
oshima@chromium.org 70ea21b46a Remove all ancillary chunks except for tRNS
R=thakis@chromium.org
BUG=150046
TEST=none
NOTRY=true

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176591 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-12 20:06:54 +00:00
apatrick@chromium.org a6917ee1bc windows: Remove DirectX SDK from search paths for include files and library files.
Chrome and its dependencies no longer need D3DX so the Windows Platform SDK is sufficient.

WebRTC still needs the directx_sdk_path gyp variable so that is not deleted.

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176585 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-12 19:56:06 +00:00
boliu@chromium.org 350cd42c65 Disable webrtc for Android system build
This should not affect upstream build configuration. This should only
affect build when building as part of the Android System build.

Disabling since we do not yet merge the necessary third_party
repositories so it is breaking downstream build.

dcommitted after all the bots have passed compile

BUG=161417
TBR=wjia@chromium.org

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176518 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-12 08:35:43 +00:00
wjia@chromium.org 3c644e99ec Enable webrtc build on android.
By setting enable_webrtc=1, webrtc build will be enabled by default on android. This will help to keep webrtc build green on Android. Expect some code size increase. 

BUG=161417
Review URL: https://codereview.chromium.org/11833022

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176512 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-12 04:34:59 +00:00
mseaborn@chromium.org c85fc6b70f Breakpad: Remove redundant Gyp setting and misleading comment
This linux_breakpad=0 assignment for Android is overridden by the
later block (which was added in
http://src.chromium.org/viewvc/chrome?view=rev&revision=147088):

        # Configure crash reporting and build options based on release type.
        'conditions': [
          ['buildtype=="Official"', {
            # Only report crash dumps for Official builds.
            'linux_breakpad%': 1,
          }, {
            'linux_breakpad%': 0,
          }],
        ],

BUG=105778
TEST=none


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176500 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-12 03:33:53 +00:00
ilevy@chromium.org 3c628491ef Fix android buildbot error reporting
Our bots we not failing on compile failure :-(

BUG=169635

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176490 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-12 01:40:56 +00:00
tony@chromium.org 36a222a85d Add a WebCore directory to the python path so we can use pymod_do_main
in Webore.gyp.

In https://bugs.webkit.org/show_bug.cgi?id=106604 , I'm adding a script
for generating idl dependencies. To make it run faster, I'm using
pymod_do_main.

BUG=None

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176437 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 21:15:19 +00:00
skyostil@chromium.org d86e3175aa [Android] Add a command line tool for reverse port forwarding
This patch adds a command line interface to
build/android/pylib/forwarder.py. It allows an Android device to access
services running on the host machine or elsewhere. This is essentially
the reverse of "adb forward".


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176372 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 16:37:17 +00:00
viettrungluu@chromium.org bdd0412104 Make ipc_tests file structure a little saner and add an ipc_perftests target.
This means that the (one, semi-manual) IPC perf test that we have will build
without manual hackery (and do so separately from the ipc_tests target).


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176341 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 15:13:37 +00:00
bulach@chromium.org ff0fdc4390 Android: fixes "device_status_check.py" for missing status.
Some android devices don't report battery status, fail gracefuly.

BUG=169183
TEST=


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176321 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 13:07:50 +00:00
eugenis@chromium.org 51441b822b Update Clang on the ASan Android test runner.
Clang package contains ASan runtime library, which is needed to run the tests.
This is specific to Android (on Linux the runtime is statically linked into
the test binaries).

BUG=160952
Review URL: https://codereview.chromium.org/11819061

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176319 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 12:44:41 +00:00
ilevy@chromium.org 4868f76139 Remove unused android buildbot shell scripts
Test logic has been consolidated into build/android/buildbot/bb_run_bot.py.
This part of the patch had to wait for buildbot master restarts, which have been been completed.
The main patch is here: https://src.chromium.org/viewvc/chrome?view=rev&revision=175698

TBR=cmp

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176313 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 11:31:49 +00:00
kristianm@chromium.org 243cd9b943 Fix findbugs issues
Constants should be private static final.
Since I'm there, renamed TAG to LOGTAG so it is obvious it is only used for logging.

BUG=


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176288 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 08:53:33 +00:00
ilevy@chromium.org 0f08c6b533 Revert 176254
> Android: upgrade sandbox_linux_unitests to a stable test
> 
> 
> BUG=166704
> NOTRY=true
> 
> Review URL: https://chromiumcodereview.appspot.com/11783106

Tests are flaky and closed the tree again...

TBR=jln@chromium.org
Review URL: https://codereview.chromium.org/11860004

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176269 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 05:39:42 +00:00
kaiwang@chromium.org 576abedab3 Add components tests
BUG=169312


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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176267 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 05:35:09 +00:00
jln@chromium.org 908e06b754 Android: upgrade sandbox_linux_unitests to a stable test
BUG=166704
NOTRY=true

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176254 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 03:36:12 +00:00
kalman@chromium.org 9e7bf40759 Run the JSON Schema Compiler's bundle compilation on JSON files. Previously it
was only run on IDL files. Clean up all the code which that simplifies.

TBR=isherman@chromium.org,battre@chromium.org,akalin@chromium.org
BUG=141318

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

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176236 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 02:10:11 +00:00
frankf@google.com 015a9167fa [Android] Add a tool for application update verification.
Usage: run_update_verification.py [options]

Performs semi-automated application update verification testing. When given
--save, it takes a snapshot of the application data on the device. (A dialog
on the device will prompt the user to grant permission to backup the data.)
Otherwise, it performs the update testing as follows: 1. Installs the |from-
apk|. 2. Restores the previously stored snapshot of application data given by
|app-data|. (A dialog on the device will prompt the user to grant permission
to restore the data.) 3. Verifies that |to-apk| cannot be installed side-by-
side. 4. Verifying that |to-apk| can replace |from-apk|.

Options:
  -h, --help            show this help message and exit
  --package-name=PACKAGE_NAME
                        Package name for the application.
  --save                Save a snapshot of application data. This will be
                        saved as backup.db in the current directory.
  --from-apk=FROM_APK   APK to update from.
  --to-apk=TO_APK       APK to update to.
  --app-data=APP_DATA   Path to the previously stored application data

BUG=167778

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176218 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-11 00:13:54 +00:00
ilevy@chromium.org 2aacc83ae8 Remove x permission from envsetup.sh
Fixes a checkperms error on main waterfall.

TBR=yfriedman

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176208 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-10 23:40:19 +00:00
yfriedman@chromium.org 731dfc09b1 Revert 176198
Fixed permissions on build/android/envsetup.sh

> Revert 176176
> > Update Android build to API level 17 and SDK Tools version 21
> > 
> > Some fixes included:
> > - Changes to resource management to account for new R.java packaging
> >   from library projects
> >   (https://android-review.googlesource.com/#/c/43134/).
> > - Fixed the package for some inludes in ModalDialogTest.java. This only
> >   worked because of how we previously used to aggregate all resoures
> >   from the prior layer. With the new packaging, we must use the resource
> >   from the appropriate layer.
> > 
> > BUG=163001,166434
> > NOTRY=true
> > 
> > Review URL: https://chromiumcodereview.appspot.com/11819047
> 
> TBR=yfriedman@chromium.org
> Review URL: https://codereview.chromium.org/11783108

TBR=smckay@chromium.org
Review URL: https://codereview.chromium.org/11820065

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176202 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-10 23:33:38 +00:00
smckay@chromium.org e573012f0f Revert 176176
> Update Android build to API level 17 and SDK Tools version 21
> 
> Some fixes included:
> - Changes to resource management to account for new R.java packaging
>   from library projects
>   (https://android-review.googlesource.com/#/c/43134/).
> - Fixed the package for some inludes in ModalDialogTest.java. This only
>   worked because of how we previously used to aggregate all resoures
>   from the prior layer. With the new packaging, we must use the resource
>   from the appropriate layer.
> 
> BUG=163001,166434
> NOTRY=true
> 
> Review URL: https://chromiumcodereview.appspot.com/11819047

TBR=yfriedman@chromium.org
Review URL: https://codereview.chromium.org/11783108

git-svn-id: http://src.chromium.org/svn/trunk/src/build@176198 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2013-01-10 23:18:11 +00:00