1. 0c9f1eb Port parts of base/process_util to Linux. by evanm@google.com · 16 years ago
  2. e27eae1 Provide converters to and from NSString* in sys_string_conversions by mark@chromium.org · 16 years ago
  3. 6380e26 Add a FilePath object Review URL: http://codereview.chromium.org/6025 by mark@chromium.org · 16 years ago
  4. 119a252 Implement MessageLoopForUI using GLib. This gets some exercise from by dsh@google.com · 16 years ago
  5. b93c054 Refactoring for portability: by mark@chromium.org · 16 years ago
  6. a98d4c1 Roll the third_party/icu38 revision in DEPS to have SCons build libicu, by sgk@google.com · 16 years ago
  7. 7de49b5 Add scoped_nsautorelease_pool.mm to the Mac SCons Build. by sgk@google.com · 16 years ago
  8. c498f0d Implement a SystemMonitor class for monitoring system status by mbelshe@google.com · 16 years ago
  9. 7af8caf Get libevent building and linking in base_unittests in the Mac SCons build: by sgk@google.com · 16 years ago
  10. e09a7c1 Create a class for getting at processor information via the by mbelshe@google.com · 16 years ago
  11. 14891e3 Only link the new event lib on Linux systems. by sgk@google.com · 16 years ago
  12. 9e044ae Use libevent, second try. Changes this time: by dkegel@google.com · 16 years ago
  13. 6e429a0 Now that we have the ICU lib depend on its data file, we no longer need to by evanm@google.com · 16 years ago
  14. 180f057 Revert "Make tcp_client_socket_unittest pass on Linux." by evanm@google.com · 16 years ago
  15. f909e89 Make tcp_client_socket_unittest pass on Linux. by dkegel@google.com · 16 years ago
  16. 4e683ca Remove duplicate stats_table.cc, left over in Windows list. by sgk@google.com · 16 years ago
  17. d271095 Remove duplicate run_all_unittests.cc, left over in the Windows by sgk@google.com · 16 years ago
  18. 42a34eb Add a class for extracting system-specific information, like the number of processors. by deanm@chromium.org · 16 years ago
  19. 6f19a38 Add an HMAC implementation using NSS. Include centralized NSS initialization, based on code from phajdan.jr. by deanm@google.com · 16 years ago
  20. 3b6f3b6 Port the thread local storage unittest to Mac and linux. by paulg@google.com · 16 years ago
  21. 871f06d Capture initial SCons build of {base,net,googleurl}_unittests on Mac: by sgk@google.com · 16 years ago
  22. 8ca0d27 POSIX/Linux related changes to file_util: by mark@chromium.org · 16 years ago
  23. e451ad1 Add the shared memory test to the scons build. by paulg@google.com · 16 years ago
  24. 7feced5 Accommodate removal of gfx\platform_canvas_unittest_win.cc in the by sgk@google.com · 16 years ago
  25. a6deb00 Create a LazyInstance abstraction for avoiding static constructors by lazily creating an instance of an object on first access. This is like Singleton, but without the Singleton property of sharing instances. This also preallocates space for the object to avoid the heap to try to help fragmentation and creation performance. by deanm@google.com · 16 years ago
  26. ef12e00 SCons build: move hamc_win.cc from the list of to-be-ported source by sgk@google.com · 16 years ago
  27. e801b83 Add base\trace_event.cc to the SCons build. by sgk@google.com · 16 years ago
  28. 0ffad95 HMAC-SHA1 implementation for Mac based on CommonCrypto; by mmentovai@google.com · 16 years ago
  29. ef46481 Run thread_local_unittest on all platforms. by deanm@google.com · 16 years ago
  30. 01cd5b3 Add ThreadLocalPointer and ThreadLocalBoolean abstractions, that will deprecate the old ThreadLocalStorage / TLSSlot APIs. by deanm@google.com · 16 years ago
  31. 69dced8 Cleanup some Windows TimeTicks functions. Move TickTicks::Now and TicksTicks::UnreliableHighResNow to Singletons, which cleans up the code and removes some possible unsafe cross-thread access. by deanm@google.com · 16 years ago
  32. 6852f50 Update Copyright text in SCons config files. TBR: beng by sgk@google.com · 16 years ago
  33. 2ff0b18 Import upstream atomicop tests. by deanm@google.com · 16 years ago
  34. 519e619 Bring back SimpleThread, but with a Delegate interface. by deanm@google.com · 16 years ago
  35. 4ff1aa7 Add unit tests for WorkerPool and add a working but poor implementation for Linux. by dsh@google.com · 16 years ago
  36. 6009c2c Move std::string16 to base::string16. Don't pollute the std namespace. Don't by mmentovai@google.com · 16 years ago
  37. f286bd4 Some more passing tests in base for Linux by mmentovai@google.com · 16 years ago
  38. de06413 Include process_util_posix.cc in POSIX SCons builds by mmentovai@google.com · 16 years ago
  39. 0ec1686 Make perftimer and run_all_perftests compile on Posix. Stub out a few things into process_util_posix, and add a function to raise to a high priority. by deanm@google.com · 16 years ago
  40. 597f34e Mark the platform_canvas_unittest as windows specific. by erg@google.com · 16 years ago
  41. 89decad Move process_util.cc to process_util_win.cc to make way for posix. by deanm@google.com · 16 years ago
  42. 91dd2f8 Move unittests that had a _test filename to _unittest. Update some missing tests in the SCons build. by deanm@google.com · 16 years ago
  43. 96aac0a Add example usages and tests to scoped_ptr.h and tuple.h. by deanm@google.com · 16 years ago
  44. af4e10b Add a test that passes on Linux. by deanm@google.com · 16 years ago
  45. 785ee82 Add the condition variable unittest to all builds. by paulg@google.com · 16 years ago
  46. 127ded5 Remove CallWrapper and SimpleThread. They overlap too closely with the message loop variants Thread and Task. by deanm@google.com · 16 years ago
  47. c76a33a Create a simple abstraction to a native OS thread, mostly useful for unittesting when you don't want a message loop. by deanm@google.com · 16 years ago
  48. 700feac Create a CallWrapper interface, for making closure-like callbacks. This is similar to RunnableMethod, but does not derive / involve a Task. This is more convenient than Callback, because the interfaces do not need to know what the underlying template arguments are, everything is dealt with as a CallWrapper*. by deanm@google.com · 16 years ago
  49. c18d7ae Port the Thread class properly to Mac and Linux. This involved porting by darin@google.com · 16 years ago
  50. 00ee923 Bring thread_posix into Linux build and fix it for Linux/Mac. by evanm@google.com · 16 years ago
  51. c7328d8 Move time formatters that only use ICU into base/time.* by tc@google.com · 16 years ago
  52. e03df93 disable test while we wait for linux fix by darin@google.com · 16 years ago
  53. 43994cc fix build bustage by darin@google.com · 16 years ago
  54. 1b905bb Update SCons base_unittests build to track recent (?) VS build changes: by sgk@google.com · 16 years ago
  55. 3de8755 Move more files to non-Win32-specific blocks. These build and pass tests on Linux. by mmoss@google.com · 16 years ago
  56. 863317c Rearrange and add notes on remaining base modules that are in the Windows-specific branch of the SConscript. by evanm@google.com · 16 years ago
  57. 65792b7 Large patch set (159 files total) to cleanup the includes. by maruel@google.com · 16 years ago
  58. eb58afe SCons build: add base\message_pump_win.cc. TBR: darin by sgk@google.com · 16 years ago
  59. e41d3b3 To pass string_util_unittest, we need the ICU data file. To get the ICU data file, we need some of PathService, which brings along with it a bunch of other needed functions. So here are a bunch of stubs, along with another file's worth of passing tests. (Based on a patch from Dean.) by evanm@google.com · 16 years ago
  60. 1bc8d52 Add command_line_unittest and pr_time_test to the linux set of unittests. Fix the const-ness of argv in CommandLine on posix. by tc@google.com · 16 years ago
  61. 0d5b191 Add skia and our png wrappers. png_codec_unittest and image_operations_unittest pass. This gives us 70 passing unittests. by tc@google.com · 16 years ago
  62. fe99a6d The SHA2 files compile, and the unittests pass, now that nspr/prcpucfg_linux.h is in, so move to the common build sections. by mmoss@google.com · 16 years ago
  63. 465e27e Build stack_container_unittest everywhere, it can build with GCC. by deanm@google.com · 16 years ago
  64. 60d5cc1 Implement nspr time on Linux. by deanm@google.com · 16 years ago
  65. f707ef3 Add a helper method to SConscript.main for adding .pdb files to the by tc@google.com · 16 years ago
  66. b16d6e0 Fix a couple "extra qualification" compile errors in method declarations, and move related non-Win32-specific files to common build target. by mmoss@google.com · 16 years ago
  67. 26216e4 Move some files which don't seem to be Win32-specific out of the Win32 blocks. by mmoss@google.com · 16 years ago
  68. 38d629a Move PE format wrapper files to Win32-only sections. by mmoss@google.com · 16 years ago
  69. 3148c4a Disable build targets in base/SConscript that don't work on by tc@google.com · 16 years ago
  70. 50a0414 Unify maintenance of NumberFormat objects into a cross-platform Singleton. Clean up some dead code and dead files. WideToNativeMB and its inverse have been obsoleted by SysWideToNativeMB in sys_string_conversions*. by mmentovai@google.com · 16 years ago
  71. 435c82c Add missing observer_list unittest and singleton unittest is for all platforms. by deanm@google.com · 16 years ago
  72. 220b7ba Kill check handler. It seems to be unused, and is implemented using ugly SEH by deanm@google.com · 16 years ago
  73. 247e35d Compile debug_util.cc on all platforms. by deanm@google.com · 16 years ago
  74. 9f288fc Build Linux against base_gfx, and we pass convolver and rect unit tests. by deanm@google.com · 16 years ago
  75. 1b96958 Update base/SConscript to remove Windows only parts from the Linux build. by deanm@google.com · 16 years ago
  76. c2b652a Make debug_util cross platform, adding BeingDebugged and BreakDebugger. Linux by deanm@google.com · 16 years ago
  77. fd3c33b Move some bits around in the SConscript that are Windows-specific, and label one that needs work. by evanm@google.com · 16 years ago
  78. e5eaced Last changes to get Linux unit tests building: by evanm@google.com · 16 years ago
  79. c76d218 Remove Mac-specific code to make a generic POSIX string_util for Mac and Linux. by mmoss@google.com · 16 years ago
  80. e26e691 Remove base\shared_memory.cc from the SCons build in favor of base\shared_memory_{win,posix}.cc. by sgk@google.com · 16 years ago
  81. daff30c Get rid of separate SConscript.main.linux: by sgk@google.com · 16 years ago
  82. 477ad9e SCons build updates: by sgk@google.com · 16 years ago
  83. 7ba78d7 Make POSIX time routines work on Linux by providing a POSIX-conformant version of TimeTicks::Now() to replace the Mach-specific one used on the Mac. by mmentovai@google.com · 16 years ago
  84. c62bf35 Provide cross-platform implementation of WaitableEvent for use on Mac and Linux. by darin@google.com · 16 years ago
  85. 4c68cc6 Allow multiple AtExitManagers to be chained in a stack, this allows much easier testing for code that is expecting to be run via an AtExitManager. This actually cleaned up a lot of the at exit code. by deanm@google.com · 16 years ago
  86. e8fc656 A basic wrapper for a windows event object that encapsulates the way we often use windows events. This API is not meant to be compatible with ObjectWatcher or MessageLoop::WatchObject. This API is meant to be easily ported to Mac & Linux using a traditional mutex and condition variable pairing. by darin@google.com · 16 years ago
  87. a6b1b7d Catch up SCons build with latest changes: by sgk@google.com · 16 years ago
  88. 0c4e80a Remove the old atomic operations interface. by deanm@google.com · 16 years ago
  89. f9e7293 Fix cut-and-paste error so we only try to build mac files on, gee, the mac... by sgk@google.com · 16 years ago
  90. c4d0311 Add new sys_string_conversions_*.cc files to the SCons build. TBR: brettw by sgk@google.com · 16 years ago
  91. 21f65a1 Drop FixedString. It's only used in two places, one where it doesn't really matter and the other where it was incorrect. by evanm@google.com · 16 years ago
  92. 79504f6 Add missing file_util_win.cc file. TBR: bradnelson by sgk@google.com · 16 years ago
  93. 53cd09a Add base_paths_win.cc to SCons build. by sgk@google.com · 16 years ago
  94. 55c7c40 Unix line-endings. by evanm@google.com · 16 years ago
  95. 84df03f Fix the base build of single_unittests.exe, which was trying to link in the .dll as a .lib. by sgk@google.com · 16 years ago
  96. e8ea923 Checking in the rest of the .lib changes, previous commit was only done from chrome/ and only got those SConscript files. by sgk@google.com · 16 years ago
  97. e74365d Fix missing comma new string_piece.cc file. TBR: deanm by sgk@google.com · 16 years ago
  98. 483a3fa Add StringPiece to the scons build. by deanm@google.com · 16 years ago
  99. 60b793b Pull the block of common Windows system libraries that we link with everywhere into the base Windows environment. by sgk@google.com · 16 years ago
  100. 815150e Convert submodules SConscript files to psuedo-builder calls. by sgk@google.com · 16 years ago