summaryrefslogtreecommitdiffstats
path: root/build
Commit message (Collapse)AuthorAgeFilesLines
* add gl_tests to all.gypgman@chromium.org2012-04-201-0/+2
| | | | | | | | | | TEST=none BUG=123086 Review URL: http://codereview.chromium.org/10070015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133093 0039d316-1c4b-4281-b951-d872f2087c98
* apk-based test runner work for android. 2 unit test bundles converted over ↵jrg@chromium.org2012-04-1911-24/+203
| | | | | | | | | | | | | | | | | | | | | | | | (ipc, base). OFF by default; enable with a gyp var. E.g. GYP_DEFINES="$GYP_DEFINES gtest_target_type=shared_library" android_gyp Some useful commands: adb uninstall org.chromium.native_test adb install -r out/Release/base_unittests_apk/ChromeNativeTests-debug.apk adb shell am start -n org.chromium.native_test/org.chromium.native_test.ChromeNativeTestActivity For the moment, all apks can be built simultaneously but use the same activity name. Thus you cannot have more than one installed at the same time. BUG=None TEST= Review URL: http://codereview.chromium.org/10051021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133053 0039d316-1c4b-4281-b951-d872f2087c98
* Disable newly added test for Android.yfriedman@chromium.org2012-04-191-0/+2
| | | | | | | | Depends on test server which isn't operational yet. Review URL: https://chromiumcodereview.appspot.com/10124011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133015 0039d316-1c4b-4281-b951-d872f2087c98
* Enable the clang plugin by default on linux (when using clang).thakis@chromium.org2012-04-191-7/+8
| | | | | | | | | | BUG=none TEST=GYP_DEFINES=clang=1 gclient runhooks, then build. Plugin prints warnings. Review URL: http://codereview.chromium.org/10115043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132935 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 132760 - Metro/HiDPI: Move 1x icons into separate pak filevarunjain@chromium.org2012-04-181-14/+0
| | | | | | | | | | | | | | | | | | | | | | | | | Currently all 1x art files are repacked into chrome.pak files. This is a problem on Windows where we want to choose which pak file to load based on metro and DPI scale. As a first step this CL does the following: - add a new enable_hidpi build flag. This allows us to test HiDPI mode on Windows Chrome. - stop packing theme_resources_standard.pak and ui_resources_standard.pak into chrome.pak - update the Mac and Windows installer code to package the extra pak files. Note, I'll be updating the Linux installer script in a separate CL. I'm still looking into the ChromeOS situation. BUG=114311 TEST=Ran on Windows, and Mac and Linux. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=132517 Review URL: http://codereview.chromium.org/10024050 TBR=sail@chromium.org Review URL: https://chromiumcodereview.appspot.com/10115031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132804 0039d316-1c4b-4281-b951-d872f2087c98
* Metro/HiDPI: Move 1x icons into separate pak filesail@chromium.org2012-04-181-0/+14
| | | | | | | | | | | | | | | | | | | | | | Currently all 1x art files are repacked into chrome.pak files. This is a problem on Windows where we want to choose which pak file to load based on metro and DPI scale. As a first step this CL does the following: - add a new enable_hidpi build flag. This allows us to test HiDPI mode on Windows Chrome. - stop packing theme_resources_standard.pak and ui_resources_standard.pak into chrome.pak - update the Mac and Windows installer code to package the extra pak files. Note, I'll be updating the Linux installer script in a separate CL. I'm still looking into the ChromeOS situation. BUG=114311 TEST=Ran on Windows, and Mac and Linux. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=132517 Review URL: http://codereview.chromium.org/10024050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132760 0039d316-1c4b-4281-b951-d872f2087c98
* Enable gpu_unittests for Android.yfriedman@chromium.org2012-04-172-0/+2
| | | | | | | | | It builds and runs successfully. Review URL: http://codereview.chromium.org/10107023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132622 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 132589 - Revert 132440 - Allow extension APIs to be compiled out.sky@chromium.org2012-04-171-0/+13
| | | | | | | | | | | | | | | | BUG=117407,123835 TEST= Review URL: http://codereview.chromium.org/10031002 TBR=jgreenwald@chromium.org Review URL: https://chromiumcodereview.appspot.com/10107026 TBR=zmo@google.com Review URL: https://chromiumcodereview.appspot.com/10106026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132591 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 132440 - Allow extension APIs to be compiled out.zmo@google.com2012-04-171-13/+0
| | | | | | | | | | | | | BUG=117407,123835 TEST= Review URL: http://codereview.chromium.org/10031002 TBR=jgreenwald@chromium.org Review URL: https://chromiumcodereview.appspot.com/10107026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132589 0039d316-1c4b-4281-b951-d872f2087c98
* Add templates for building java and running the jni_generator.yfriedman@chromium.org2012-04-172-0/+109
| | | | | | | | | | As requested in http://codereview.chromium.org/10073024/, I've created templates for these two actions. I've also applied them to base. Review URL: http://codereview.chromium.org/10081035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132537 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 132517 - Metro/HiDPI: Move 1x icons into separate pak filehbono@chromium.org2012-04-171-14/+0
| | | | | | | | | | | | | | | | | | | | | | | Currently all 1x art files are repacked into chrome.pak files. This is a problem on Windows where we want to choose which pak file to load based on metro and DPI scale. As a first step this CL does the following: - add a new enable_hidpi build flag. This allows us to test HiDPI mode on Windows Chrome. - stop packing theme_resources_standard.pak and ui_resources_standard.pak into chrome.pak - update the Mac and Windows installer code to package the extra pak files. Note, I'll be updating the Linux installer script in a separate CL. I'm still looking into the ChromeOS situation. BUG=114311 TEST=Ran on Windows, and Mac and Linux. Review URL: http://codereview.chromium.org/10024050 TBR=sail@chromium.org Review URL: https://chromiumcodereview.appspot.com/10103022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132529 0039d316-1c4b-4281-b951-d872f2087c98
* Metro/HiDPI: Move 1x icons into separate pak filesail@chromium.org2012-04-171-0/+14
| | | | | | | | | | | | | | | | | | | | Currently all 1x art files are repacked into chrome.pak files. This is a problem on Windows where we want to choose which pak file to load based on metro and DPI scale. As a first step this CL does the following: - add a new enable_hidpi build flag. This allows us to test HiDPI mode on Windows Chrome. - stop packing theme_resources_standard.pak and ui_resources_standard.pak into chrome.pak - update the Mac and Windows installer code to package the extra pak files. Note, I'll be updating the Linux installer script in a separate CL. I'm still looking into the ChromeOS situation. BUG=114311 TEST=Ran on Windows, and Mac and Linux. Review URL: http://codereview.chromium.org/10024050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132517 0039d316-1c4b-4281-b951-d872f2087c98
* clang: Remove -Wno-literal-conversionthakis@chromium.org2012-04-161-6/+0
| | | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/10097003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132443 0039d316-1c4b-4281-b951-d872f2087c98
* Allow extension APIs to be compiled out.jgreenwald@chromium.org2012-04-161-0/+13
| | | | | | | | | | BUG=117407 TEST= Review URL: http://codereview.chromium.org/10031002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132440 0039d316-1c4b-4281-b951-d872f2087c98
* clang: Remove -Wno-c++11-compat.thakis@chromium.org2012-04-151-6/+0
| | | | | | | | | | | | | | It has been removed from -Wall in clang r143248 (Oct 2011), so there's no need to explicitly disable it. No behavior change. BUG=none TEST=none TBR=hans NOTRY=true Review URL: http://codereview.chromium.org/10097002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132367 0039d316-1c4b-4281-b951-d872f2087c98
* roll clang 153589:154450thakis@chromium.org2012-04-151-0/+6
| | | | | | | | | | | | | | | | | | | | | | Interesting changes in this range: * The tooling infrastructure landed. Not observable, but it makes it easier to write clang tools. * Honor -fno-pic, pie support * Better diagnostics for several c++11 features * Cross-compiler changes that hopefully make CrOs clang builds simpler * Many LTO fixes Also pick up a minor change to the style plugin: Instead of ignoring problems below out/, it now ignores them below gen/ and geni/. This should make it work better with custom build directories. BUG=none TEST=none TBR=mark Review URL: http://codereview.chromium.org/10081013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132350 0039d316-1c4b-4281-b951-d872f2087c98
* Disable some tests which newly fail on Androidjrg@chromium.org2012-04-131-0/+5
| | | | | | | | | BUG=None TEST= Review URL: https://chromiumcodereview.appspot.com/10082015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132241 0039d316-1c4b-4281-b951-d872f2087c98
* Temporarily make unit_tests a static library on Android.yfriedman@chromium.org2012-04-132-1/+7
| | | | | | | | | | | | | | While we sort out the remaining linker errors, this at least ensures we can add compliation of a bunch of chrome code for Android to gatekeeper. This is motivated by having the android unit_tests compilation step broken 4 out of 4 days this week. BUG=117407 Review URL: http://codereview.chromium.org/10065018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132154 0039d316-1c4b-4281-b951-d872f2087c98
* Added a GYP_DEFINE to add libraries to the link line.asharif@chromium.org2012-04-121-0/+4
| | | | | | | | | | | | | | | | When Chrome is built with -fprofile-generate in *_extra_cflags, it needs to link against gcov. Adding -lgcov to the link line doesn't help because it occurs before -Wl,--start-group. This flag correctly adds the required library if used like the test case described below. BUG=102550 TEST=GYP_DEFINES="debug_extra_cflags=-fprofile-generate libraries_for_target=-lgcov" ./build/gyp_chromium make -j5 chrome # passes. Review URL: http://codereview.chromium.org/10054022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132061 0039d316-1c4b-4281-b951-d872f2087c98
* Removed access to prefs that does not work on Androidjscholler@chromium.org2012-04-121-0/+12
| | | | | | | | | | | | | | | | | | | | | | This work is useful to make sure at build time that we are not accessing prefs that are not registered. This CL addresses the prefs registered by: BrowserInit::RegisterUserPrefs PinnedTabCodec::RegisterUserPrefs PluginsUI::RegisterUserPrefs PromoResourceService::RegisterUserPrefs Later CL: Browser::RegisterUserPrefs SyncPromoUI::RegisterUserPrefs *::RegisterPrefs BUG=120802 TEST=Compiled and made diff-ed the link error to make sure they are the same. Review URL: http://codereview.chromium.org/9949033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131994 0039d316-1c4b-4281-b951-d872f2087c98
* The Chrome Remote Desktop installation for Windows can be build by bots now.alexeypa@chromium.org2012-04-122-0/+14
| | | | | | Review URL: http://codereview.chromium.org/10031014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131960 0039d316-1c4b-4281-b951-d872f2087c98
* Upstream crash changes for android.carlosvaldivia@google.com2012-04-101-0/+6
| | | | | | | | | | | | | | | | | | | | | Third time is a charm. Original Reviews: https://chromiumcodereview.appspot.com/9838033/ http://codereview.chromium.org/9967017 Revert "Revert 131593" This reverts commit e306ea7f630d4264075913ea3a1a728d98ca9605. BUG= TEST= Review URL: http://codereview.chromium.org/9960072 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131662 0039d316-1c4b-4281-b951-d872f2087c98
* roll gtest 560:613, gmock 364:405thakis@chromium.org2012-04-101-10/+0
| | | | | | | | | | | | | | | | | | | Most of the included changes are minor. After this roll, we have what went into the 1.6 release, and gmock now supports being build as a DLL. (I want this roll for one of the minor changes, which makes it possible to reenable -Wnull-dereference for clang) Turn -Wnull-dereference back on, fix one instance where a violation snuck in. BUG=111806 TEST=none TBR=tony Review URL: https://chromiumcodereview.appspot.com/9999025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131656 0039d316-1c4b-4281-b951-d872f2087c98
* Import libusb 1.0.9-rc3 into third_party.gdk@chromium.org2012-04-101-0/+1
| | | | | | | | | | | BUG=none TEST=none Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=129069 Review URL: http://codereview.chromium.org/9826025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131622 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 131593erg@google.com2012-04-101-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Speculatively reverting due to gyp update error on official bots: KeyError: 'src/breakpad/breakpad.gyp:dump_syms#target while trying to load target src/remoting/remoting.gyp:remoting_linux_symbols#target' This is the only patch in the regression range that touches breakpad.gyp. --- Upstream Android native crash handling changes. This is actulaly the second time. Revert "Revert 131404 - Upstream native crash handling changes for Android." This reverts commit 421df96aab6267e963ddff16c9f738aa903a2cba. Conflicts: chrome/browser/chrome_browser_main.cc BUG= TEST= Review URL: http://codereview.chromium.org/9967017 TBR=carlosvaldivia@google.com Review URL: https://chromiumcodereview.appspot.com/10037013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131600 0039d316-1c4b-4281-b951-d872f2087c98
* Upstream Android native crash handling changes.carlosvaldivia@google.com2012-04-101-0/+6
| | | | | | | | | | | | | | | | | | | | This is actulaly the second time. Revert "Revert 131404 - Upstream native crash handling changes for Android." This reverts commit 421df96aab6267e963ddff16c9f738aa903a2cba. Conflicts: chrome/browser/chrome_browser_main.cc BUG= TEST= Review URL: http://codereview.chromium.org/9967017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131593 0039d316-1c4b-4281-b951-d872f2087c98
* Whitespace change to force a buildmaruel@chromium.org2012-04-101-1/+1
| | | | | | NO CODE CHANGE. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131552 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 131404 - Upstream native crash handling changes for Android.msw@chromium.org2012-04-091-6/+0
| | | | | | | | | | | | | | | | | | | | Android native crash handling is almost identical to linux handling with some differences. Note that even after this change Chrome on Android will not compile with the USE_LINUX_BREAKPAD flag. Forthcomming changes in breakpad should remedy this state of affairs. BUG= TEST= Review URL: http://codereview.chromium.org/9838033 TBR=carlosvaldivia@google.com Review URL: https://chromiumcodereview.appspot.com/9999004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131420 0039d316-1c4b-4281-b951-d872f2087c98
* Floating point based Point/Size/Rect and Insetsoshima@chromium.org2012-04-091-0/+9
| | | | | | | | | | | | | | | | | This is copied from integer version, instead of using template, to minimize conflict with m19 branch, as using template requires updating forward declaration of these classes in many places. I put this behind gyp flag for now so that we can move forward without breaking non DIP build until we can get aura working with DIP. BUG=114664 TEST=none Review URL: http://codereview.chromium.org/10025004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131405 0039d316-1c4b-4281-b951-d872f2087c98
* Upstream native crash handling changes for Android.carlosvaldivia@google.com2012-04-091-0/+6
| | | | | | | | | | | | | | | | | Android native crash handling is almost identical to linux handling with some differences. Note that even after this change Chrome on Android will not compile with the USE_LINUX_BREAKPAD flag. Forthcomming changes in breakpad should remedy this state of affairs. BUG= TEST= Review URL: http://codereview.chromium.org/9838033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131404 0039d316-1c4b-4281-b951-d872f2087c98
* These targets were causing files to have the same output target, which ninja ↵scottmg@chromium.org2012-04-071-1/+1
| | | | | | | | | | | (reasonably) does not like. dlldata.c is a generated file name that a bunch of idl build rules output but most do not actually compile it AFAICT. This was causing some targets in isimpledom (that contain multiple idl files) to output to the same name (dlldata.c), so uniquize it based on InputName. For the one target that seems to actually build dlldata.c, override back to the original name to keep things the same (iaccessible2). Review URL: http://codereview.chromium.org/10008061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131232 0039d316-1c4b-4281-b951-d872f2087c98
* Remove WAYLAND portoshima@chromium.org2012-04-074-42/+0
| | | | | | | | | | | Also removed skia/ext/canvas_paint_x.h which is not in use. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10009024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131219 0039d316-1c4b-4281-b951-d872f2087c98
* Move files inside chrome/browser/chromeos/dbus to chromeos/dbushashimoto@chromium.org2012-04-061-0/+5
| | | | | | | | | | | | | | | | Move files in chrome/browser/chromeos/dbus/ to chromeos/dbus Add chromeos/dbus/DEPS Add chromeos.gyp:chromeos_test_support and chromeos.gyp:chromeos_unittests Add CHROMEOS_EXPORT to classes Move power related proto targets to chromeos.gyp Rewrite and sort #includes BUG=119583 TEST=component chromeos build success, checkdeps success Review URL: https://chromiumcodereview.appspot.com/9838085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131065 0039d316-1c4b-4281-b951-d872f2087c98
* Don't build the task manager into Android builds.jgreenwald@chromium.org2012-04-061-0/+10
| | | | | | | | | BUG=117407 Review URL: http://codereview.chromium.org/9701006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131055 0039d316-1c4b-4281-b951-d872f2087c98
* Add support for not compiling in chrome/browser/background.jgreenwald@chromium.org2012-04-051-0/+8
| | | | | | | | | | BUG=117407 TEST= Review URL: http://codereview.chromium.org/9959116 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131037 0039d316-1c4b-4281-b951-d872f2087c98
* Allow SessionService to be disabled.yfriedman@chromium.org2012-04-051-0/+11
| | | | | | | | | | | Android manages persistence of sessions separately in Java code. BUG=117407 Review URL: http://codereview.chromium.org/9985002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130976 0039d316-1c4b-4281-b951-d872f2087c98
* Don't show failure of the last succeeded testwangxianzhu@chromium.org2012-04-051-0/+2
| | | | | | | | | | | | | | Before this change, if some test failed before the last test succeeded, because of the return value, the buildbot will show that the last test also failed. Add a summary build step to avoid that. BUG=None TEST=None Review URL: http://codereview.chromium.org/9989001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130823 0039d316-1c4b-4281-b951-d872f2087c98
* Remove TOOLKIT_USES_GTK and consolidate it into TOOLKIT_GTKoshima@chromium.org2012-04-051-3/+0
| | | | | | | | | | | Add gtk dependency to base.gyp for android host_os="linux" case BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/9969080 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130784 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 130528 - Disable one-click signin for all platforms except windows.rogerta@chromium.org2012-04-041-2/+3
| | | | | | | | | | | | | BUG=121677 TEST=Make sure one-click signin is working only on windows. See crbug.com/110050 for a description of the feature Review URL: https://chromiumcodereview.appspot.com/9969102 TBR=rogerta@chromium.org Review URL: https://chromiumcodereview.appspot.com/9981002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130623 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 129889 - Revert 129878 - Re-enable use_canvas_skia=1 on Windows.asvitkine@chromium.org2012-04-041-1/+1
| | | | | | | | | | Original review: https://chromiumcodereview.appspot.com/9863053 BUG=105550 TEST=UI text looks the same as before. Review URL: https://chromiumcodereview.appspot.com/9965062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130614 0039d316-1c4b-4281-b951-d872f2087c98
* Adds qcms to all.gyp. This was reverted before because qcms' sse2 code ↵estade@chromium.org2012-04-041-0/+1
| | | | | | | | | | | | | didn't compile on linux32 Official build. I believe I've fixed it by adding -msse and -msse2. Will submit late at night and watch the bots. BUG=143 TEST=None author: Tony Payne <tpayne@chromium.org> original review: http://codereview.chromium.org/9958140/ Review URL: https://chromiumcodereview.appspot.com/9969139 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130549 0039d316-1c4b-4281-b951-d872f2087c98
* Build and push chrome.pak for ui_unittests on Android.wangxianzhu@chromium.org2012-04-046-16/+28
| | | | | | | | | | BUG=None TEST=build/android/run_tests.py -s out/Release/ui_unittests Review URL: http://codereview.chromium.org/9963086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130547 0039d316-1c4b-4281-b951-d872f2087c98
* Disable one-click signin for all platforms except windows.rogerta@chromium.org2012-04-041-3/+2
| | | | | | | | | | BUG=121677 TEST=Make sure one-click signin is working only on windows. See crbug.com/110050 for a description of the feature Review URL: https://chromiumcodereview.appspot.com/9969102 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130528 0039d316-1c4b-4281-b951-d872f2087c98
* Update test suppressions / disabled tests following refactoring.rsleevi@chromium.org2012-04-031-1/+0
| | | | | | | | | | | | | | | | Some of these suppressed tests no longer exist or were renamed. They have not been failing since they were renamed, so it should be fine. Additionally, in the case of the CertVerifier tests, these tests now use a mock stub for testing caching behaviour, and thus no longer block dependent on the system libraries. R=wtc BUG=117372, 67599 TEST=net_unittests Review URL: https://chromiumcodereview.appspot.com/9965036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130419 0039d316-1c4b-4281-b951-d872f2087c98
* Remove hack in .gyp file disabling NaCl in ARM CrOs build. We still have it ↵olonho@google.com2012-04-031-7/+3
| | | | | | | | | | | disabled in ebuild. BUG= http://code.google.com/p/nativeclient/issues/detail?id=2687 TEST= Review URL: https://chromiumcodereview.appspot.com/9911013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130389 0039d316-1c4b-4281-b951-d872f2087c98
* Support for ARM NaCl untrusted runtime build.olonho@google.com2012-04-031-1/+10
| | | | | | | | | | | | This one depends on https://chromiumcodereview.appspot.com/9816003/ on NaCl side and indeed produces working untrusted runtime. BUG= http://code.google.com/p/nativeclient/issues/detail?id=2687 TEST=Compile for ARM with "GYP_DEFINES="target_arch=arm sysroot=~/rootfs/" and run DOSBox with produced untrusted runtime. Review URL: https://chromiumcodereview.appspot.com/9838005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130386 0039d316-1c4b-4281-b951-d872f2087c98
* Reapply 130248 - Add full support for filesystem URLs. Trying to get the ↵apavlov@chromium.org2012-04-031-0/+7
| | | | | | | | | | build into the right state. TBR=pfeldman Review URL: https://chromiumcodereview.appspot.com/9956101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130363 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 130248 - Add full support for filesystem URLs.sergeyu@chromium.org2012-04-031-7/+0
| | | | | | | | | | | | | | BUG=114484 TEST=existing filesystem tests don't break Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=128753 Review URL: https://chromiumcodereview.appspot.com/7811006 TBR=ericu@google.com Review URL: https://chromiumcodereview.appspot.com/9950079 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130293 0039d316-1c4b-4281-b951-d872f2087c98
* Disable ui_unittests before we resolve resource pack issue.wangxianzhu@chromium.org2012-04-031-1/+1
| | | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/9963076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130271 0039d316-1c4b-4281-b951-d872f2087c98
* Fix linux_aura bot compile.erg@google.com2012-04-021-1/+1
| | | | | | | | | BUG=121545 TEST=none Review URL: https://chromiumcodereview.appspot.com/9968061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130253 0039d316-1c4b-4281-b951-d872f2087c98