summaryrefslogtreecommitdiffstats
path: root/build/features_override.gypi
Commit message (Collapse)AuthorAgeFilesLines
* Add command-line switch to enable FileSystem API support.kinuko@chromium.org2010-09-031-1/+1
| | | | | | | | | | | This doesn't set the flag for workers. BUG=32277 TEST=none; to be added when we have complete implementation. Review URL: http://codereview.chromium.org/3240006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58453 0039d316-1c4b-4281-b951-d872f2087c98
* Define XHR_RESPONSE_BLOB when building.michaeln@chromium.org2010-08-251-0/+1
| | | | | | | | | TEST=none BUG=52486 Review URL: http://codereview.chromium.org/3185027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57376 0039d316-1c4b-4281-b951-d872f2087c98
* Let use_accelerated_compositing be usable for both enabling and disabling ↵thakis@chromium.org2010-08-201-2/+2
| | | | | | | | | | | | | | | | | | | | compositing. With this, Chromium can be built on 10.5 again with the following ~/.gyp/include.gypi: { 'variables': { 'build_ffmpegsumo': 0, 'use_system_ffmpeg': 0, 'disable_nacl': 1, 'enable_svg': 0, 'use_accelerated_compositing': 0, } } Review URL: http://codereview.chromium.org/3173033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56871 0039d316-1c4b-4281-b951-d872f2087c98
* Enable accelerated 2D canvas at compile time (still protected by a runtime ↵senorblanco@google.com2010-08-181-9/+3
| | | | | | | | | | | flag). This enables compilation on all platforms, but it's only hooked up internally on Win and Linux. BUG=none TEST=if it compiles, you're happy Review URL: http://codereview.chromium.org/3117023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56562 0039d316-1c4b-4281-b951-d872f2087c98
* Build accelerated compositor by default on Mac OS X to ensure nokbr@google.com2010-08-111-1/+1
| | | | | | | | | | | compilation regressions in the associated code. BUG=38969 TEST=none Review URL: http://codereview.chromium.org/3012048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55763 0039d316-1c4b-4281-b951-d872f2087c98
* Add a new feature define ENABLE_BLOB.jianli@chromium.org2010-08-031-0/+1
| | | | | | | | | | | | | | We need to replace all blob related feature defines ENABLE_BLOB_SLICE and ENABLE_FILE_READER. This patch only adds the new feature define in order to be prepared for the corresponding WebKit patch to land. After it is brought down, we will then remove 2 obsolete feature defines. BUG=none TEST=none Review URL: http://codereview.chromium.org/3082001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54770 0039d316-1c4b-4281-b951-d872f2087c98
* Turn on prefetching in webkit buildsgavinp@google.com2010-08-011-1/+1
| | | | | | | | | | | | | | | | | | | | After http://codereview.chromium.org/2847093/show lands, I'll land this CL which modifies our build controls for webkit to turn on prefetching. This change might require builders to be clobbered, and by making it so small, I'm sure a sherriff will see what's up. However, I don't believe it will actually require a clobber, since there's no unit tests for prefetching (only functional tests and dumprendertree tests in webkit). TBR=tonyg@chromium.org BUG=none TEST=http://gemal.dk/browserspy/prefetching.php Review URL: http://codereview.chromium.org/3080015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54509 0039d316-1c4b-4281-b951-d872f2087c98
* Implement prefetching in chromegavinp@google.com2010-07-311-0/+1
| | | | | | | | | | | | | | | | | | With this CL (see also issue 2910009), chrome will support basic prefetching. You can optionally deactivate prefetching with the command line argument --disable-prefetch. A new RequestPriority was created as well, IDLE, which is lower than LOWEST. Unfortunately, SPDY has only two bits for priority, so as a temporary measure (pending SPDY v3 which will have three), we have a mapping in SPDY that folds net::LOWEST and net::IDLE together. BUG=13505 TEST=http://gemal.dk/browserspy/prefetch.php Review URL: http://codereview.chromium.org/3050016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54421 0039d316-1c4b-4281-b951-d872f2087c98
* Add --enable-speech-input switch and set ENABLE_INPUT_SPEECH=1satish@chromium.org2010-07-301-0/+1
| | | | | | | | | | | | | | | | | | Flip the compile-time enable switch for speech input to on and add a command-line switch to put the functionality behind. The command-line flag will be used both on the Chromium side and in WebKit via WebRuntimeFeatures. This CL depends on the webkit patch https://bugs.webkit.org/show_bug.cgi?id=43146 BUG=none TEST=browser_tests --gtest_filter=SpeechInputEnableSwitchTest.* Originally Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=54235, but reverted due to tests failure. Review URL: http://codereview.chromium.org/3064017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54389 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Add --enable-speech-input switch and set ENABLE_INPUT_SPEECH=1"evan@chromium.org2010-07-301-1/+0
| | | | | | This reverts commit r54235. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54249 0039d316-1c4b-4281-b951-d872f2087c98
* Add --enable-speech-input switch and set ENABLE_INPUT_SPEECH=1satish@chromium.org2010-07-301-0/+1
| | | | | | | | | | | | | | | | Flip the compile-time enable switch for speech input to on and add a command-line switch to put the functionality behind. The command-line flag will be used both on the Chromium side and in WebKit via WebRuntimeFeatures. This CL depends on the webkit patch https://bugs.webkit.org/show_bug.cgi?id=43146 BUG=none TEST=browser_tests --gtest_filter=SpeechInputEnableSwitchTest.* Review URL: http://codereview.chromium.org/3064017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54235 0039d316-1c4b-4281-b951-d872f2087c98
* Add a gyp variable to turn on accelerated 2d canvas build time flagsjamesr@chromium.org2010-07-281-0/+7
| | | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/3028029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54025 0039d316-1c4b-4281-b951-d872f2087c98
* Add --enable-device-orientation switch and set ENABLE_DEVICE_ORIENTATION=1hans@chromium.org2010-07-221-0/+1
| | | | | | | | | | | | | | | Flip the compile-time enable switch for device orientation to on, and add a command-line switch to put the functionality behind. The command-line flag will be used both on the Chromium side, and in WebKit via WebRuntimeFeatures. BUG=44654 TEST=browser_tests --gtest_filter=DeviceOrientationEnableSwitchTest.* Review URL: http://codereview.chromium.org/3042009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53317 0039d316-1c4b-4281-b951-d872f2087c98
* Enable WEB_TIMING to match WebKit r63559.tonyg@chromium.org2010-07-161-0/+1
| | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/3034009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52698 0039d316-1c4b-4281-b951-d872f2087c98
* set ENABLE_DIRECTORY_UPLOAD=1 in features_override.gypi. This is now ↵johnnyg@chromium.org2010-07-151-0/+1
| | | | | | | | | | | | available in webkit, switch is required to pass the layout tests. BUG=none TEST=none TBR=ojan Review URL: http://codereview.chromium.org/3033002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52539 0039d316-1c4b-4281-b951-d872f2087c98
* linux: enable compiling of hardware compositingpiman@chromium.org2010-07-011-1/+1
| | | | | | Review URL: http://codereview.chromium.org/2865030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51418 0039d316-1c4b-4281-b951-d872f2087c98
* - Webkit Roll 61360:61384tkent@google.com2010-06-181-10/+12
| | | | | | | | | | | - Enable PROGRESS_TAG and METER_TAG BUG=none TEST=none TBR=dglazkov,hclam Review URL: http://codereview.chromium.org/2818015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50216 0039d316-1c4b-4281-b951-d872f2087c98
* Set use_accelerated_compositing gyp variable to 1 whenever the gpu ↵vangelis@chromium.org2010-06-171-0/+1
| | | | | | | | | | | compositor code is compiled in. This will allows us to conditionaly link in the appropriate dependencies that the compositor code needs. BUG=46834 Review URL: http://codereview.chromium.org/2806013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50163 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: use ScriptDebugServer instead of v8 debugger protocolyurys@chromium.org2010-06-161-0/+1
| | | | | | | | TBR=pfeldman Review URL: http://codereview.chromium.org/2841005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49903 0039d316-1c4b-4281-b951-d872f2087c98
* Really rollout http://codereview.chromium.org/2458005 at revision r49770.andreip@chromium.org2010-06-151-1/+0
| | | | | | Review URL: http://codereview.chromium.org/2811005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49786 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: rollout 49770yurys@chromium.org2010-06-151-1/+1
| | | | | | | | | | DevTools test expectations need to be updated in WebKit first. TBR=pfeldman Review URL: http://codereview.chromium.org/2833005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49773 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: use ScriptDebugServer instead of v8 debugging protocolyurys@chromium.org2010-06-151-0/+1
| | | | | | Review URL: http://codereview.chromium.org/2458005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49770 0039d316-1c4b-4281-b951-d872f2087c98
* Compile ACCELERATED_COMPOSITING and 3D CSS transform code by default on ↵vangelis@chromium.org2010-06-141-1/+1
| | | | | | | | | | | windows. Other platforms will still require the use_accelerated_compositing=1 GYP define. BUG=46085 Review URL: http://codereview.chromium.org/2764003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49697 0039d316-1c4b-4281-b951-d872f2087c98
* Enable building FILE_READER in chromium. Note that clean build is needed for ↵jianli@chromium.org2010-05-121-0/+1
| | | | | | | | | | | | Windows machine. BUG=none TEST=none Review URL: http://codereview.chromium.org/1995012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47039 0039d316-1c4b-4281-b951-d872f2087c98
* Supply the ENABLE_3D_RENDERING compile time flag whenever the ↵vangelis@chromium.org2010-05-111-1/+4
| | | | | | | | | use_accelerated_compositing GYP define is specified. BUG=43631 Review URL: http://codereview.chromium.org/2019005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46939 0039d316-1c4b-4281-b951-d872f2087c98
* Enables EventSource and disables fast/dom/prototype-inheritance.htm temporarily.bulach@chromium.org2010-04-221-0/+1
| | | | | | | | | | Once we roll to http://trac.webkit.org/changeset/58099, remove the layout test suppression. (follow up on http://codereview.chromium.org/557037/show which was reverted by http://codereview.chromium.org/1712006/show) Review URL: http://codereview.chromium.org/1742007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45324 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 45305 - Enables EVENTSOURCE in Chromium following this changeset in ↵bulach@chromium.org2010-04-221-1/+0
| | | | | | | | | | | | | | | WebKit: http://trac.webkit.org/changeset/53931 TEST=Existing webkit layout tests must pass: LayoutTests/fast/eventsource and LayoutTests/http/tests/eventsource Review URL: http://codereview.chromium.org/557037 TBR=bulach@chromium.org Review URL: http://codereview.chromium.org/1712006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45310 0039d316-1c4b-4281-b951-d872f2087c98
* Enables EVENTSOURCE in Chromium following this changeset in WebKit:bulach@chromium.org2010-04-221-0/+1
| | | | | | | | | | http://trac.webkit.org/changeset/53931 TEST=Existing webkit layout tests must pass: LayoutTests/fast/eventsource and LayoutTests/http/tests/eventsource Review URL: http://codereview.chromium.org/557037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45305 0039d316-1c4b-4281-b951-d872f2087c98
* Support sending a sliced file in chromium.jianli@chromium.org2010-03-241-0/+1
| | | | | | | | | BUG=none TEST=The WebKit Layout test. Review URL: http://codereview.chromium.org/594036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42559 0039d316-1c4b-4281-b951-d872f2087c98
* Enable the touch events feature.gdk@chromium.org2010-03-151-0/+3
| | | | | | | | | BUG=36415 TEST=fast/events/touch Review URL: http://codereview.chromium.org/836001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41620 0039d316-1c4b-4281-b951-d872f2087c98
* Allow building without SVG.evan@chromium.org2010-02-241-7/+9
| | | | | | | | Only useful for debug builds, obviously. Review URL: http://codereview.chromium.org/655001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39875 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 55033:55080agl@chromium.org2010-02-221-0/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39609 0039d316-1c4b-4281-b951-d872f2087c98
* Added utility to compile webkit with WTF_USE_ACCELERATED_COMPOSITING flag. ↵alokp@chromium.org2010-02-171-0/+11
| | | | | | | | We just need to set GYP_DEFINES=use_accelerated_compositing=1. It is set to 0 by default. Part of the changes is under webkit which I will send in a different CL. Review URL: http://codereview.chromium.org/605006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39256 0039d316-1c4b-4281-b951-d872f2087c98
* Roll WebKit to 54653jorlow@chromium.org2010-02-111-0/+1
| | | | | | | | | | | | Ruby now needs to be explicitly enabled, it seems. TBR=yurys TEST=none BUG=none Review URL: http://codereview.chromium.org/603032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38774 0039d316-1c4b-4281-b951-d872f2087c98
* Really enable JAVASCRIPT_DEBUGGER WebKit feature for Chromium.mnaganov@chromium.org2010-02-101-0/+1
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/596035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38610 0039d316-1c4b-4281-b951-d872f2087c98
* Enable JAVASCRIPT_DEBUGGER flag. JSC-dependent parts of WebCore were guarded ↵mnaganov@chromium.org2010-02-051-1/+0
| | | | | | | | | | | | | with USE(JSC). TBR=pfeldman@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/572032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38200 0039d316-1c4b-4281-b951-d872f2087c98
* Try to fix canaries.jorlow@chromium.org2010-01-301-0/+1
| | | | | | | | | | TEST=none BUG=none TBR=yaar Review URL: http://codereview.chromium.org/548212 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37593 0039d316-1c4b-4281-b951-d872f2087c98
* Enable geolocation at build time, and update the flag to configure it at ↵joth@chromium.org2010-01-201-0/+1
| | | | | | | | | | | | | runtime. Depends on https://bugs.webkit.org/show_bug.cgi?id=33467 BUG=29182 TEST=Run with & without --enable-geolocation and open LayoutTests/fast/dom/Geolocation/resources/enabled.js Review URL: http://codereview.chromium.org/545084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36631 0039d316-1c4b-4281-b951-d872f2087c98
* Enable SVG filters in Chrome. This will cause a number of tests to need ↵senorblanco@chromium.org2009-12-141-0/+1
| | | | | | | | | | | | | rebaselines. BUG=29737 TEST=none Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=34446 Review URL: http://codereview.chromium.org/491070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34460 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 34446, since it broke ChromiumOS.senorblanco@chromium.org2009-12-131-1/+0
| | | | | | | | | | | | BUG=29737 TEST=none Review URL: http://codereview.chromium.org/491070 TBR=senorblanco@chromium.org Review URL: http://codereview.chromium.org/495015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34447 0039d316-1c4b-4281-b951-d872f2087c98
* Enable SVG filters in Chrome. This will cause a number of tests to need ↵senorblanco@chromium.org2009-12-131-0/+1
| | | | | | | | | | | rebaselines. BUG=29737 TEST=none Review URL: http://codereview.chromium.org/491070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34446 0039d316-1c4b-4281-b951-d872f2087c98
* Pull the OpenType sanitiser library from code.google.com/ots/, as per our ↵yusukes@google.com2009-11-131-0/+1
| | | | | | | | | | | | discussion on the (internal) group. Review URL: http://codereview.chromium.org/363001 BUG=17818 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31878 0039d316-1c4b-4281-b951-d872f2087c98
* Implemented getActiveAttrib, getActiveUniform and readPixels. Removedkbr@google.com2009-10-211-1/+1
| | | | | | | | | | | | unnecessary UTF-8 conversion when converting C strings to WebKit Strings. Re-enabled WebGL in Dev Channel builds. BUG=http://crbug.com/21852 TEST=none (runs existing WebGL tests; more coming) Review URL: http://codereview.chromium.org/308006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29632 0039d316-1c4b-4281-b951-d872f2087c98
* add ENABLE_WEB_SOCKETSukai@chromium.org2009-10-211-0/+1
| | | | | | | | | BUG=12497 TEST=none Review URL: http://codereview.chromium.org/251087 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29610 0039d316-1c4b-4281-b951-d872f2087c98
* Added stub implementation of SharedWorkerRepository.atwilson@chromium.org2009-10-151-1/+1
| | | | | | | | | | | | Turn on ENABLE_SHARED_WORKERS by default, but disable the SharedWorker bindings so they are not available. This allows the SharedWorker code to get compiled in to fight against bit rot, but prevents applications from using this API yet. TEST=existing layout tests suffice Review URL: http://codereview.chromium.org/273019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29185 0039d316-1c4b-4281-b951-d872f2087c98
* Disable WebGL temporarily to heal the build.darin@chromium.org2009-10-121-1/+1
| | | | | | | | | | TBR=dglazkov BUG=none TEST=none Review URL: http://codereview.chromium.org/274004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28707 0039d316-1c4b-4281-b951-d872f2087c98
* Rolling back the previous fix which didn't fix it. Will try a clobber build ↵johnnyg@chromium.org2009-10-081-1/+1
| | | | | | | | | | | to pick up the flag. TBR=kbr BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28371 0039d316-1c4b-4281-b951-d872f2087c98
* Rollback features_override 3D_CANVAS to 0. It seems to conflict with latest ↵johnnyg@chromium.org2009-10-081-1/+1
| | | | | | | | | | | WebKit. TBR=kbr BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28370 0039d316-1c4b-4281-b951-d872f2087c98
* Compile WebGL support in to Chrome's Dev Channel builds. Stillkbr@google.com2009-10-071-1/+1
| | | | | | | | | | | | requires command line option --enable-webgl (and, currently, --no-sandbox) to enable. BUG=http://crbug.com/21852 TEST=none (runs existing WebGL tests; more coming) Review URL: http://codereview.chromium.org/270003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28336 0039d316-1c4b-4281-b951-d872f2087c98
* Add comments setting emacs and vim tab width and expansion variables.sgk@google.com2009-10-061-1/+8
| | | | | | | | BUG=none TEST=successful builds Review URL: http://codereview.chromium.org/256059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28089 0039d316-1c4b-4281-b951-d872f2087c98