summaryrefslogtreecommitdiffstats
path: root/DEPS
Commit message (Collapse)AuthorAgeFilesLines
* Switching to gyp generated vcprojs for some components.bradnelson@google.com2009-03-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Includes propset changes: Property changes on: C:\clients\chrome6\src\skia ___________________________________________________________________ Modified: svn:ignore - skia.xcodeproj + skia.xcodeproj skia.sln Property changes on: C:\clients\chrome6\src\third_party\zlib ___________________________________________________________________ Modified: svn:ignore - zlib.xcodeproj + zlib.xcodeproj zlib.sln Property changes on: C:\clients\chrome6\src\third_party\libpng ___________________________________________________________________ Modified: svn:ignore - libpng.xcodeproj + libpng.xcodeproj libpng.sln Property changes on: C:\clients\chrome6\src\third_party\libjpeg ___________________________________________________________________ Modified: svn:ignore - libjpeg.xcodeproj + libjpeg.xcodeproj libjpeg.sln Property changes on: C:\clients\chrome6\src\build ___________________________________________________________________ Modified: svn:ignore - all.xcodeproj + all.xcodeproj all.sln All.vcproj Property changes on: C:\clients\chrome6\src\base ___________________________________________________________________ Modified: svn:ignore - base.xcodeproj + base.xcodeproj base.vcproj base_gfx.vcproj base_unittests.vcproj debug_message.vcproj Property changes on: C:\clients\chrome6\src\testing ___________________________________________________________________ Modified: svn:ignore - gtest gtest.xcodeproj + gtest gtest.xcodeproj gtest.sln Review URL: http://codereview.chromium.org/43101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11512 0039d316-1c4b-4281-b951-d872f2087c98
* rolling DEPS to pick up latest third_party/WebKit, which contains a fix for ↵darin@chromium.org2009-03-111-1/+1
| | | | | | the intl1 performance regression git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11492 0039d316-1c4b-4281-b951-d872f2087c98
* Chrome side of WebKit merge 41559:41588brettw@chromium.org2009-03-111-2/+2
| | | | | | Review URL: http://codereview.chromium.org/43084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11483 0039d316-1c4b-4281-b951-d872f2087c98
* Update the revision of GTM we're picking up.thomasvl@chromium.org2009-03-111-1/+1
| | | | | | Review URL: http://codereview.chromium.org/42077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11466 0039d316-1c4b-4281-b951-d872f2087c98
* Re-apply the webkit merge. This is a revert of 11454 and 11455.darin@chromium.org2009-03-111-2/+2
| | | | | | | | TBR=jar Review URL: http://codereview.chromium.org/42080 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11457 0039d316-1c4b-4281-b951-d872f2087c98
* Revert merge (revision 11400) to test impact on page cycler perf.darin@chromium.org2009-03-111-2/+2
| | | | | | | | TBR=jar Review URL: http://codereview.chromium.org/43085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11454 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit merge 41530:41559.darin@chromium.org2009-03-101-2/+2
| | | | | | | | | | | | | | | | Minor issues: 1- WebCore::Position no longer has an offset() method. Instead, it seems to have been replaced by a public m_offset member variable. WebCore code now just uses that directly instead, so we need to do the same. 2- Added / removed sources from the project files. R=eroman Review URL: http://codereview.chromium.org/42046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11400 0039d316-1c4b-4281-b951-d872f2087c98
* Rolling newer icu38 into mainline to propagate gyp changes.bradnelson@google.com2009-03-101-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11394 0039d316-1c4b-4281-b951-d872f2087c98
* Move forked, DevTools-specific JS files out of third_party/WebKitdglazkov@google.com2009-03-101-1/+1
| | | | | | | | | R=darin BUG=3320 Review URL: http://codereview.chromium.org/44001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11358 0039d316-1c4b-4281-b951-d872f2087c98
* Adds WebThemeEngine, WebColor, and WebCanvas to the WebKit API (chrome-side).darin@chromium.org2009-03-101-1/+1
| | | | | | | | R=dglazkov Review URL: http://codereview.chromium.org/40330 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11351 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit merge 41498:41530.ericroman@google.com2009-03-101-2/+2
| | | | | | Review URL: http://codereview.chromium.org/41017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11312 0039d316-1c4b-4281-b951-d872f2087c98
* More WebKit API action (chromium side).darin@chromium.org2009-03-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds the following methods to WebKitClient: decrementStatsTable incrementStatsTable traceEventBegin traceEventEnd The implementation of initV8CounterFunction is now a no-op. V8Proxy.cpp no longer calls it, and I moved the corresponding work out of WebKit. The embedder now calls the appropriate V8 API before initializing WebKit. Includes some cleanup to WebString and WebCString. I decided that I prefer "data" over "characters" since the latter may be confusing in some cases. For example, the elements of a WebString or WebCString may not be individual characters but may be part of a character. "data" is also consistent with basic_string<T> and so should be plenty familiar. There is wanton disregard for the Chrome+JSC build in this CL, but that's OK. We have already crossed that bridge. R=dglazkov Review URL: http://codereview.chromium.org/39288 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11254 0039d316-1c4b-4281-b951-d872f2087c98
* Update V8 to latest trunk version containing a fix for an assertionager@chromium.org2009-03-091-1/+1
| | | | | | | | that was triggered when opening the web inspector in the test shell in debug mode. Review URL: http://codereview.chromium.org/39345 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11246 0039d316-1c4b-4281-b951-d872f2087c98
* Strip CRs from *.in files to allow building from webkit.orgdglazkov@google.com2009-03-091-1/+1
| | | | | | | | R=darin Review URL: http://codereview.chromium.org/39004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11244 0039d316-1c4b-4281-b951-d872f2087c98
* Roll deps to pick up a hackified chromiumbridge.cpp.ericroman@google.com2009-03-081-1/+1
| | | | | | | | TBR=darin Review URL: http://codereview.chromium.org/39317 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11215 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit merge 41447:41498ericroman@google.com2009-03-071-2/+2
| | | | | | Review URL: http://codereview.chromium.org/39297 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11210 0039d316-1c4b-4281-b951-d872f2087c98
* roll DEPS to pickup WebKit@11154darin@chromium.org2009-03-061-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11155 0039d316-1c4b-4281-b951-d872f2087c98
* Reland r11118.darin@chromium.org2009-03-061-1/+1
| | | | | | | | TBR=dglazkov Review URL: http://codereview.chromium.org/40240 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11137 0039d316-1c4b-4281-b951-d872f2087c98
* roll DEPS to pick up WebKit@11128darin@chromium.org2009-03-061-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11129 0039d316-1c4b-4281-b951-d872f2087c98
* Roll DEPS.mbelshe@google.com2009-03-061-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11127 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r11118 :(darin@chromium.org2009-03-061-1/+1
| | | | | | | | TBR=dglazkov Review URL: http://codereview.chromium.org/39267 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11125 0039d316-1c4b-4281-b951-d872f2087c98
* Rename "ReadOnly" attribute to "v8ReadOnly".mbelshe@google.com2009-03-061-1/+1
| | | | | | | | | | | | | | | | Although this attribute is fairly self-describing, it is difficult to look at IDL and know what is V8 specific. Since this is something that we added, having it marked as such greatly helps when reviewing. Also rename: v8OnInstance -> V8OnInstance v8DisallowShadowing -> V8DisallowShadowing v8DoNotCheckSignature -> V8DoNotCheckSignature Review URL: http://codereview.chromium.org/39263 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11123 0039d316-1c4b-4281-b951-d872f2087c98
* roll DEPS to pick up latest WebKitdarin@chromium.org2009-03-061-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11120 0039d316-1c4b-4281-b951-d872f2087c98
* More WebKit API action (chromium side)darin@chromium.org2009-03-061-1/+1
| | | | | | | | R=dglazkov Review URL: http://codereview.chromium.org/39240 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11118 0039d316-1c4b-4281-b951-d872f2087c98
* Pick up a newer gtm (w/ theme and color additions we'll need for ui)thomasvl@chromium.org2009-03-061-1/+1
| | | | | | Review URL: http://codereview.chromium.org/39255 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11111 0039d316-1c4b-4281-b951-d872f2087c98
* Update DEPS to pull V8 from V8 trunk. There was an accidental updateager@chromium.org2009-03-061-1/+1
| | | | | | | | | of DEPS to pull from bleeding_edge. TBR=christian.plesner.hansen@gmail.com Review URL: http://codereview.chromium.org/40212 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11099 0039d316-1c4b-4281-b951-d872f2087c98
* Pull in new third_party/WebKit that fixes textarea-metrics.html.ojan@google.com2009-03-061-1/+1
| | | | | | Review URL: http://codereview.chromium.org/39241 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11084 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit merge 41420:41447darin@chromium.org2009-03-051-2/+2
| | | | | | | | R=eroman Review URL: http://codereview.chromium.org/39198 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11010 0039d316-1c4b-4281-b951-d872f2087c98
* roll DEPS to pick up test for page cycler perfdarin@chromium.org2009-03-051-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11004 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r10974 since it didn't change performance on the page cyclers.darin@chromium.org2009-03-051-1/+1
| | | | | | | | TBR=dglazkov Review URL: http://codereview.chromium.org/39197 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10996 0039d316-1c4b-4281-b951-d872f2087c98
* Skipped LayoutTests/fast/regex/test1.html. This test doesn'tplesner@google.com2009-03-051-1/+1
| | | | | | | | | terminate because it contains exponential regexps. It is safe to disable because we run the same tests (sans the nonterminating ones) as part of the v8 tests. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10977 0039d316-1c4b-4281-b951-d872f2087c98
* Update v8 again. This time without impacting the page cycler (hopefully).ager@chromium.org2009-03-051-1/+1
| | | | | | Review URL: http://codereview.chromium.org/40155 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10976 0039d316-1c4b-4281-b951-d872f2087c98
* Temporarily disable cookie codepaths that use WebKitClient to analyzedarin@chromium.org2009-03-051-1/+1
| | | | | | | | | | performance impact. TBR=dglazkov Review URL: http://codereview.chromium.org/39177 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10974 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: Rolls DEPS to pickup Linux rendering fixes.agl@chromium.org2009-03-051-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10952 0039d316-1c4b-4281-b951-d872f2087c98
* Revert to V8 revision 1370 due to performance regressions.darin@chromium.org2009-03-041-1/+1
| | | | | | | | R=nsylvain Review URL: http://codereview.chromium.org/39160 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10931 0039d316-1c4b-4281-b951-d872f2087c98
* Chrome side of WebKit merge 41402:41420brettw@chromium.org2009-03-041-1/+1
| | | | | | Review URL: http://codereview.chromium.org/39139 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10911 0039d316-1c4b-4281-b951-d872f2087c98
* Roll deps to pull in webkit with textarea fixes. TBR.ojan@google.com2009-03-041-1/+1
| | | | | | Review URL: http://codereview.chromium.org/39146 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10909 0039d316-1c4b-4281-b951-d872f2087c98
* Update V8 to a safer version not containing a regexp optimization.ager@chromium.org2009-03-041-1/+1
| | | | | | TBR=kasperl git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10892 0039d316-1c4b-4281-b951-d872f2087c98
* Update V8 again to get a crash fix and a regexp fix.ager@chromium.org2009-03-041-1/+1
| | | | | | Review URL: http://codereview.chromium.org/39129 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10888 0039d316-1c4b-4281-b951-d872f2087c98
* Update v8 to version 1.0.3.1 containing a fix for a crash bug in newager@chromium.org2009-03-041-1/+1
| | | | | | | 'eval' optimization code. Review URL: http://codereview.chromium.org/39122 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10887 0039d316-1c4b-4281-b951-d872f2087c98
* Reduce string conversions related to cookie handling, and eliminate somedarin@chromium.org2009-03-041-1/+1
| | | | | | | | | | | | unnecessary WebKit:: scoping. This is part of a speculative fix for the intl1 page cycler regression. TBR=dglazkov Review URL: http://codereview.chromium.org/39120 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10884 0039d316-1c4b-4281-b951-d872f2087c98
* Roll DEPS to pick up WebKit changedglazkov@google.com2009-03-041-1/+1
| | | | | | | | TBR=darin Review URL: http://codereview.chromium.org/40097 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10871 0039d316-1c4b-4281-b951-d872f2087c98
* Chromium side of WebKit merge 41362:41402.pam@chromium.org2009-03-041-2/+2
| | | | | | Review URL: http://codereview.chromium.org/39096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10854 0039d316-1c4b-4281-b951-d872f2087c98
* Rollback 10840.mbelshe@google.com2009-03-041-1/+1
| | | | | | Review URL: http://codereview.chromium.org/40075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10846 0039d316-1c4b-4281-b951-d872f2087c98
* Unforking Document.idl and HTMLCanvasElement.idlmbelshe@google.com2009-03-031-1/+1
| | | | | | | | Depends on corresponding WebKit change - will add DEPS later. Review URL: http://codereview.chromium.org/39050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10840 0039d316-1c4b-4281-b951-d872f2087c98
* Chromium side of WebKit merge 41286:41362.pam@chromium.org2009-03-031-2/+2
| | | | | | Review URL: http://codereview.chromium.org/27376 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10786 0039d316-1c4b-4281-b951-d872f2087c98
* Roll DEPS to pick up disabling overhead accounting.dglazkov@chromium.org2009-03-021-1/+1
| | | | | | | | TBR=darin Review URL: http://codereview.chromium.org/27352 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10733 0039d316-1c4b-4281-b951-d872f2087c98
* Hook up upstreamed V8 bindings, Chromium sidedglazkov@google.com2009-03-021-1/+1
| | | | | | | | R=mark Review URL: http://codereview.chromium.org/27336 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10713 0039d316-1c4b-4281-b951-d872f2087c98
* GYP it, GYP it good.mark@chromium.org2009-03-021-2/+10
| | | | | | | | Convert the Mac build to the new GYP-based Xcode build, and remove the old Xcode projects. Review URL: http://codereview.chromium.org/28305 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10693 0039d316-1c4b-4281-b951-d872f2087c98
* Chrome side to pick up new WebKit API changes.darin@chromium.org2009-02-281-1/+1
| | | | | | | | | | | | | | | | | | | | | WebKit API now provides: - layoutTestMode - support for registering extra local URL schemes - access to the current WebKitClient WebKitClient was extended to include: - access to the default locale - access to the current time - methods to start/stop the shared timer - method to get work scheduled on the main thread - methods to access cookies - method to prefetch hostnames R=dglazkov Review URL: http://codereview.chromium.org/27276 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10665 0039d316-1c4b-4281-b951-d872f2087c98