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

1789 Коммитов

Автор SHA1 Сообщение Дата
thakis@chromium.org c0433486ba cycle
BUG=none
TEST=none
TBR=rsleevi

Review URL: http://codereview.chromium.org/7618030

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96708 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-13 21:21:28 +00:00
rsleevi@chromium.org 20a5a00fe1 Whitespace to force Mac Clobber
BUG=none
TEST=none
TBR=thakis

Review URL: http://codereview.chromium.org/7648013

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96705 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-13 19:40:53 +00:00
jschuh@chromium.org 651dcd7c49 Revert 96592 - Add scroll and gesture message filters for UIPI Flash.
Flash forwards some window messages when it has no handler set. The only ones I've observed are WM_MOUSEWHEEL and WM_GESTURE (gestures are supported only on Win7). So, we need to allow these messages through the UIPI boundary. 

One important note is that I use per-process message filters on Vista, but per-window filters on Win7 or later (because they're supported). 

BUG=86810
TEST=None.
Review URL: http://codereview.chromium.org/7617019

TBR=jschuh@chromium.org
Review URL: http://codereview.chromium.org/7648011

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96661 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-13 02:19:25 +00:00
georgey@chromium.org f44688a801 Force bots to re-run
TEST=none
BUG=none

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96660 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-13 02:11:58 +00:00
pkasting@chromium.org c2babc27d3 Lower PSAPI_VERSION to 1 to try to get Chrome launching again on < Windows 7 after r96592.
BUG=none
TEST=Launches on XP/Vista
TBR=georgey
Review URL: http://codereview.chromium.org/7633044

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96657 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-13 00:52:28 +00:00
jschuh@chromium.org 256c45adc7 Add scroll and gesture message filters for UIPI Flash.
Flash forwards some window messages when it has no handler set. The only ones I've observed are WM_MOUSEWHEEL and WM_GESTURE (gestures are supported only on Win7). So, we need to allow these messages through the UIPI boundary. 

One important note is that I use per-process message filters on Vista, but per-window filters on Win7 or later (because they're supported). 

BUG=86810
TEST=None.
Review URL: http://codereview.chromium.org/7617019

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96592 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-12 19:12:44 +00:00
mseaborn@chromium.org 0a470a76cb Breakpad: Ensure crash_service64.exe gets built on Buildbot
Add crash_service64.exe in places where crash_service.exe is depended
upon, otherwise it doesn't get built on Buildbot.

Declaring run-time dependencies via Gyp dependencies is a hack:
creating test_support_ui.a doesn't depend on crash_service.exe being
present.  But it seems to be the usual practice to sprinkle run-time
dependencies in Gyp dependencies until the desired effect is achieved.

BUG=89730
TEST=trybots

Review URL: http://codereview.chromium.org/7619012

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96479 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-11 22:54:41 +00:00
dnicoara@chromium.org 2ca356e3af Adding Wayland message loop and gyp build deps
This CL depends on http://codereview.chromium.org/7457023

BUG=
TEST=


Review URL: http://codereview.chromium.org/7473010

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96428 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-11 18:20:22 +00:00
thakis@chromium.org 7e43328ae7 mac: Use gcc for official builds again until breakpad is sorted out.
BUG=91371
TEST=none

Review URL: http://codereview.chromium.org/7623021

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96424 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-11 18:10:05 +00:00
mnissler@chromium.org afe0f1f3a2 Revert 95907 - Clean up SSL false start blacklist code. Numerous changes, including:
* Handle trailing dots in LastTwoLabels() as in http://codereview.chromium.org/7518035/ .  Rename this function to LastTwoComponents() to match the terminology used in the RegistryControlledDomainService and elsewhere in Chrome.
  * Since callers are using std::string anyway, make the functions in the header take const std::string& instead of char*.  This also allows doing string operations on them.
  * Use string operations (like find_last_of()) in place of hand-written algorithms, for brevity, clarity, and safety.
  * Avoid "unsigned", which the style guide forbids, and use allowed types like size_t, uint32, or int (depending on the situation).
  * Avoid #define and "using".
  * Use standard algorithms for similar reasons as using string ops.
  * Use file_util functions to significantly abbreviate file reading/writing code.
  * Use wmain() (on Windows) in combination with FilePath to avoid issues if the provided pathname has extended characters that don't flatten losslessly to the default codepage (thanks Darin for pointing out this issue).
  * Avoid casting where possible.  Avoid some casts for printf()-style calls by using a string stream, which also allows for slightly less boilerplate.
  * Convert non-error uses of stderr to the chrome-standard VLOG(1).
  * Correctly handle hostnames with trailing dots in the input file.
  * In general, shorten code where possible.

Because this adds a dependency on base, and ssl_false_start_blacklist_process has the "#host" specifier in net.gyp, bradnelson tells me that base and its dependencies need an explicit "host, target" toolchain list for the Linux builds to work correctly.  It would be nice if we could avoid this but I guess gyp would have to be smarter or something.

BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7550002

TBR=pkasting@chromium.org
Review URL: http://codereview.chromium.org/7623015

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96391 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-11 14:53:53 +00:00
jochen@chromium.org e4a599d898 Make the "All" target depend on content
BUG=90443
TEST=none

Review URL: http://codereview.chromium.org/7621008

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96354 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-11 10:14:48 +00:00
jochen@chromium.org 8add92975e Whitespace change to trigger build
git-svn-id: http://src.chromium.org/svn/trunk/src/build@96338 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-11 08:03:00 +00:00
mark@chromium.org f4baa7662f Disable data page (heap) execution when running on Mac OS X 10.7 ("Lion").
BUG=91990
TEST=otool -h Whatever.app/Contents/MacOS/Whatever should show the 0x1000000
     bit set in the |flags| column
Review URL: http://codereview.chromium.org/7608027

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96288 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-11 01:12:10 +00:00
thakis@chromium.org 744f380c93 Don't make clang plugins stuff dependent on _toolset=target either.
Follow-up to http://codereview.chromium.org/7606012

BUG=none
TEST=nothing changes


Review URL: http://codereview.chromium.org/7611005

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96272 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-11 00:16:26 +00:00
jochen@chromium.org eedec67964 Add content_unittests to builders in all.gyp
BUG=90443
TEST=none


Review URL: http://codereview.chromium.org/7604033

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96263 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-11 00:04:11 +00:00
maruel@chromium.org 071a9b6931 Sort dependencies.
No functional change.

R=cmp@chromium.org
BUG=
TEST=


Review URL: http://codereview.chromium.org/7461145

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96254 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-10 23:33:42 +00:00
cmp@chromium.org cfda338c48 Whitespace change.
git-svn-id: http://src.chromium.org/svn/trunk/src/build@96222 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-10 21:55:49 +00:00
pkasting@chromium.org 66a2c6b4c7 Revert 95910 - Revert 95907 - Clean up SSL false start blacklist code.
Now that r96121 has landed, this should not cause compile failures when compiling base/ on the host.

Original comments follow.

Numerous changes, including:
  * Handle trailing dots in LastTwoLabels() as in http://codereview.chromium.org/7518035/ .  Rename this function to LastTwoComponents() to match the terminology used in the RegistryControlledDomainService and elsewhere in Chrome.
  * Since callers are using std::string anyway, make the functions in the header take const std::string& instead of char*.  This also allows doing string operations on them.
  * Use string operations (like find_last_of()) in place of hand-written algorithms, for brevity, clarity, and safety.
  * Avoid "unsigned", which the style guide forbids, and use allowed types like size_t, uint32, or int (depending on the situation).
  * Avoid #define and "using".
  * Use standard algorithms for similar reasons as using string ops.
  * Use file_util functions to significantly abbreviate file reading/writing code.
  * Use wmain() (on Windows) in combination with FilePath to avoid issues if the provided pathname has extended characters that don't flatten losslessly to the default codepage (thanks Darin for pointing out this issue).
  * Avoid casting where possible.  Avoid some casts for printf()-style calls by using a string stream, which also allows for slightly less boilerplate.
  * Convert non-error uses of stderr to the chrome-standard VLOG(1).
  * Correctly handle hostnames with trailing dots in the input file.
  * In general, shorten code where possible.

Because this adds a dependency on base, and ssl_false_start_blacklist_process has the "#host" specifier in net.gyp, bradnelson tells me that base and its dependencies need an explicit "host, target" toolchain list for the Linux builds to work correctly.  It would be nice if we could avoid this but I guess gyp would have to be smarter or something.

BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7550002

TBR=pkasting@chromium.org
Review URL: http://codereview.chromium.org/7529035

TBR=fischman@chromium.org
Review URL: http://codereview.chromium.org/7587003

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96211 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-10 19:37:13 +00:00
nsylvain@chromium.org d49e75b9a5 Dummy checkin to trigger the bots
git-svn-id: http://src.chromium.org/svn/trunk/src/build@96210 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-10 19:36:33 +00:00
dnicoara@chromium.org 699eca76f4 Adding Wayland support for ui/gfx
* Added GL surface and context support for Wayland.
* Updated ui/gfx files to allow Wayland support
* All Wayland code is behind the use_wayland gyp flag

This CL depends on http://codereview.chromium.org/7457023

BUG=
TEST=Compiled Chrome with use_wayland disabled to verify that
the changes didn't break anything


Review URL: http://codereview.chromium.org/7467007

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96192 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-10 16:50:44 +00:00
maruel@chromium.org 7d2c85bc52 ui_tests is needed by chromium performance testers
TBR=chase@chromium.org
BUG=
TEST=

Review URL: http://codereview.chromium.org/7552042

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96185 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-10 15:33:41 +00:00
thakis@chromium.org 39ac011d3e cycle bots
BUG=none
TEST=none
TBR=rsleevi

Review URL: http://codereview.chromium.org/7590019

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96128 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-10 05:00:45 +00:00
thakis@chromium.org dbf52af393 Pass clang flags to the host compiler, too.
As of http://codereview.chromium.org/7471028, clang is used as
host compiler as well, so this check is no longer necessary. In
fact, it's harmful: In http://codereview.chromium.org/7550002 ,
a dependency on base is added on the host side, which doesn't
build with clang because e.g. -Wno-char-subscript isn't used,
which means base/third_party/dmg_fp/dtoa.cc doesn't build cleanly
in host compiler mode.

BUG=none
TEST=happy pkasting


Review URL: http://codereview.chromium.org/7606012

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96121 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-10 03:07:12 +00:00
thakis@chromium.org 6c5f8e89ee mac: Make 'clang=1' the default for official builds.
BUG=91371
TEST=none

Review URL: http://codereview.chromium.org/7605014

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96104 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-10 00:11:49 +00:00
apatrick@chromium.org 31a1d9e373 A gyp file that generates a Visual studio solution for only certain targets and their transitive dependencies.
Review URL: http://codereview.chromium.org/7528011

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96103 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-10 00:11:18 +00:00
bradnelson@google.com 3e84e3aebc Adding a nacl win integration test buildbot target.
BUG=None
TEST=None
R=ncbray@google.com
Review URL: http://codereview.chromium.org/7552027

git-svn-id: http://src.chromium.org/svn/trunk/src/build@96101 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-09 23:53:03 +00:00
maruel@chromium.org 58479fac09 Whitespace change to force a build. NO CODE CHANGE.
git-svn-id: http://src.chromium.org/svn/trunk/src/build@95988 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-09 13:26:38 +00:00
fta@sofaraway.org 1e42ed2cd0 Update translations using strings from launchpad.net r297
Patch from Fabien Tassin <fta@sofaraway.org>.

Review URL: http://codereview.chromium.org/7585038

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95947 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-09 04:44:34 +00:00
fischman@chromium.org 25ac09bef8 Revert 95907 - Clean up SSL false start blacklist code. Numerous changes, including:
* Handle trailing dots in LastTwoLabels() as in http://codereview.chromium.org/7518035/ .  Rename this function to LastTwoComponents() to match the terminology used in the RegistryControlledDomainService and elsewhere in Chrome.
  * Since callers are using std::string anyway, make the functions in the header take const std::string& instead of char*.  This also allows doing string operations on them.
  * Use string operations (like find_last_of()) in place of hand-written algorithms, for brevity, clarity, and safety.
  * Avoid "unsigned", which the style guide forbids, and use allowed types like size_t, uint32, or int (depending on the situation).
  * Avoid #define and "using".
  * Use standard algorithms for similar reasons as using string ops.
  * Use file_util functions to significantly abbreviate file reading/writing code.
  * Use wmain() (on Windows) in combination with FilePath to avoid issues if the provided pathname has extended characters that don't flatten losslessly to the default codepage (thanks Darin for pointing out this issue).
  * Avoid casting where possible.  Avoid some casts for printf()-style calls by using a string stream, which also allows for slightly less boilerplate.
  * Convert non-error uses of stderr to the chrome-standard VLOG(1).
  * Correctly handle hostnames with trailing dots in the input file.
  * In general, shorten code where possible.

Because this adds a dependency on base, and ssl_false_start_blacklist_process has the "#host" specifier in net.gyp, bradnelson tells me that base and its dependencies need an explicit "host, target" toolchain list for the Linux builds to work correctly.  It would be nice if we could avoid this but I guess gyp would have to be smarter or something.

BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7550002

TBR=pkasting@chromium.org
Review URL: http://codereview.chromium.org/7529035

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95910 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-08 23:44:55 +00:00
pkasting@chromium.org 99442ed8df Clean up SSL false start blacklist code. Numerous changes, including:
* Handle trailing dots in LastTwoLabels() as in http://codereview.chromium.org/7518035/ .  Rename this function to LastTwoComponents() to match the terminology used in the RegistryControlledDomainService and elsewhere in Chrome.
  * Since callers are using std::string anyway, make the functions in the header take const std::string& instead of char*.  This also allows doing string operations on them.
  * Use string operations (like find_last_of()) in place of hand-written algorithms, for brevity, clarity, and safety.
  * Avoid "unsigned", which the style guide forbids, and use allowed types like size_t, uint32, or int (depending on the situation).
  * Avoid #define and "using".
  * Use standard algorithms for similar reasons as using string ops.
  * Use file_util functions to significantly abbreviate file reading/writing code.
  * Use wmain() (on Windows) in combination with FilePath to avoid issues if the provided pathname has extended characters that don't flatten losslessly to the default codepage (thanks Darin for pointing out this issue).
  * Avoid casting where possible.  Avoid some casts for printf()-style calls by using a string stream, which also allows for slightly less boilerplate.
  * Convert non-error uses of stderr to the chrome-standard VLOG(1).
  * Correctly handle hostnames with trailing dots in the input file.
  * In general, shorten code where possible.

Because this adds a dependency on base, and ssl_false_start_blacklist_process has the "#host" specifier in net.gyp, bradnelson tells me that base and its dependencies need an explicit "host, target" toolchain list for the Linux builds to work correctly.  It would be nice if we could avoid this but I guess gyp would have to be smarter or something.

BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7550002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95907 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-08 23:30:24 +00:00
siggi@chromium.org 6ded4d7f6f Enable /PROFILE for Release builds and remove it from Debug builds.
Landing this change for rogerm@chromium.org, original review at http://codereview.chromium.org/7541080/.

BUG=None
TEST=Incremental linking works again.
Review URL: http://codereview.chromium.org/7106002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95878 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-08 20:56:34 +00:00
phajdan.jr@chromium.org abdd3368e4 Remove selenium_tests, they're obsolete.
BUG=90905
Review URL: http://codereview.chromium.org/7491098

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95840 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-08 18:14:02 +00:00
dhollowa@chromium.org d1d7f1d26b Cycle bots
Cycle bots

BUG=none
TEST=none

Review URL: http://codereview.chromium.org/7569032

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95766 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-07 16:00:35 +00:00
thakis@chromium.org 724470707c cycle bots
BUG=none
TEST=none
TBR=rsleevi

Review URL: http://codereview.chromium.org/7491081

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95755 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-07 00:07:31 +00:00
maruel@chromium.org cdb81507c6 Force a build. NO CODE CHANGE
git-svn-id: http://src.chromium.org/svn/trunk/src/build@95752 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-06 22:44:49 +00:00
thakis@chromium.org d281bba35b cycle bots more
BUG=none
TEST=none
TBR=rsleevi

Review URL: http://codereview.chromium.org/7491080

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95747 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-06 20:14:48 +00:00
thakis@chromium.org cdbd7bfc78 cycle bots
BUG=none
TEST=none
TBR=rsleevi

Review URL: http://codereview.chromium.org/7583027

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95746 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-06 19:51:29 +00:00
lambroslambrou@chromium.org 5e9b5b022d Add Remoting webapp to chrome_official_builder target.
BUG=87632
TEST=Official Windows Chrome logs show Remoting webapp being built.

Review URL: http://codereview.chromium.org/7461144

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95682 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-05 23:15:15 +00:00
yoshiki@chromium.org 4d43d01c4c WebUI TaskManager: make it default on Chrome OS
And fixes the code of task manager and following tests which didn't work correctly on WebUI TaskManager.
- TaskManagerBrowserTest.ShutdownWhileOpen
- ExtensionApiTest.ProcessesVsTaskManager
- PrerenderBrowserTest.PrerenderTaskManager

BUG=chromium-os:13885
TEST=trybots

Review URL: http://codereview.chromium.org/7550004

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95567 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-05 04:00:47 +00:00
thakis@chromium.org 220d88c8af clang: Remove explicit -fobjc-exceptions flag.
clang matches gcc again in that -fno-exceptions no longer disables
objc exceptions. Woohoo!

BUG=75001
TEST=none


Review URL: http://codereview.chromium.org/7511006

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95420 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-04 15:39:38 +00:00
darin@chromium.org 83c0d16acb Kill executable targets that are now folded into performance_ui_tests.
TBR=chase@chromium.org

Originally reviewed at:
http://codereview.chromium.org/7523032/
Review URL: http://codereview.chromium.org/7465102

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95290 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-03 19:53:15 +00:00
tony@chromium.org 87e1efc7a5 Remove USE_BASE_DATA_PACK from build_config.h since it's only
used in one file.  Inline the usage instead.


Review URL: http://codereview.chromium.org/7538030

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95123 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-02 18:53:53 +00:00
timurrrr@chromium.org dab368babe Trigger the build
TBR=glider
Review URL: http://codereview.chromium.org/7551005

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95062 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-02 08:56:43 +00:00
yoshiki@chromium.org b5292c6822 Revert 95015 - WebUI TaskManager: make it default on Chrome OS
And fixes the code of task manager and following tests which didn't work correctly on WebUI TaskManager.
- TaskManagerBrowserTest.ShutdownWhileOpen
- ExtensionApiTest.ProcessesVsTaskManager
- PrerenderBrowserTest.PrerenderTaskManager

BUG=chromium-os:13885
TEST=trybots

Review URL: http://codereview.chromium.org/7520011

TBR=yoshiki@chromium.org
Review URL: http://codereview.chromium.org/7537045

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95018 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-02 00:43:41 +00:00
yoshiki@chromium.org 358b53a2cd WebUI TaskManager: make it default on Chrome OS
And fixes the code of task manager and following tests which didn't work correctly on WebUI TaskManager.
- TaskManagerBrowserTest.ShutdownWhileOpen
- ExtensionApiTest.ProcessesVsTaskManager
- PrerenderBrowserTest.PrerenderTaskManager

BUG=chromium-os:13885
TEST=trybots

Review URL: http://codereview.chromium.org/7520011

git-svn-id: http://src.chromium.org/svn/trunk/src/build@95015 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-02 00:23:56 +00:00
jhawkins@chromium.org f8a11ba5b7 Web Intents: Preparatory work.
* Added --enable-web-intents switch.
* Added enable_web_intents build variable, for use in WebKit mostly.
* Added registration InfoBar and piping to the WebKit side, which is not hooked
  up on that side yet.

BUG=none
TEST=RegisterIntentHandlerInfoBarDelegateTest.*

Review URL: http://codereview.chromium.org/7461093

git-svn-id: http://src.chromium.org/svn/trunk/src/build@94867 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-08-01 02:34:01 +00:00
satorux@chromium.org 45f05e9d25 Implement classes used for manipulating D-Bus messages.
Message/MethodCall/Response classes wrap around DBusMessage.

MessageReader and Message Writer provide API to read and write
D-Bus messages in a type safe fashion.

BUG=90036
TEST=The code is not yet used in Chrome. Run unit tests.


Review URL: http://codereview.chromium.org/7492029

git-svn-id: http://src.chromium.org/svn/trunk/src/build@94845 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-07-30 19:13:31 +00:00
haraken@google.com 0bb93fd15c Unify the version string to be displayed on "About Chromium" dialog. (5/6)
- Fetch Subversion URL and the revision from 'git log' even if git-svn is not available.
- Remove VersionInfo.root, since nobody is using it.
- Allow a user to specify the directory name just prior to the svn src URL.

FYI: We decided to split the changes of issue 7104106 (http://codereview.chromium.org/7104106/) into the following steps. This is the fifth step of them:

(1) Add CreateVersionString() to chrome_version_info.*, update the GTK+ code to use it. (reviewer: erg, tony)
(2) Update the mac code to use CreateVersionString(). Update About.xib. (reviewer: mark)
(3) Update the views code to use CreateVersionString(). This can happen at the same time as (2). (reviewer: davemoore, tony)
(4) Update version.bat to use lastchange.py. (reviewer: evan)
(5) Make changes to lastchange.py and webkit_version.py. (reviewer: evan, mark)
(6) Update tweak_info_plist to use lastchange.py. (reviewer: mark)

BUG=37186
TEST=Observe that "About Chromium" dialog shows the version string like "14.0.787.0 (Developer Build 88242 Windows" on Windows and Linux.


Review URL: http://codereview.chromium.org/7493073

git-svn-id: http://src.chromium.org/svn/trunk/src/build@94828 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-07-30 05:34:48 +00:00
sky@chromium.org 59662c07d1 Shell of implementation for embedded windows. At this point this is
just a proof of concept. Next step is going to be pulling code from
the window manager into this. Desktop will likely be renamed to
WindowManager.

At this point just make sure you think I'm not going off into the
weeds.

BUG=none
TEST=none
R=derat@chromium.org

Review URL: http://codereview.chromium.org/7534002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@94733 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-07-29 19:32:06 +00:00
sergeyu@chromium.org 2fc3799f6b Revert 94519 - Kill executable targets that are now folded into performance_ui_tests.
R=chase@chromium.org
Review URL: http://codereview.chromium.org/7523032

Broken linux build: http://build.chromium.org/p/chromium/builders/Linux%20Builder%20x64/builds/20505/steps/compile/logs/stdio

TBR=darin@chromium.org
Review URL: http://codereview.chromium.org/7530002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@94525 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2011-07-28 19:11:51 +00:00