summaryrefslogtreecommitdiffstats
path: root/build/internal
Commit message (Collapse)AuthorAgeFilesLines
* Purify support:sgk@google.com2008-11-225-12/+36
| | | | | | | | | | | | | | | * Add third_party/purify/pure_api.c to the base\base_lib.scons sources. * Support specification of CHROME_BUILD_TYPE (and CHROMIUM_BUILD while we're here) either on the command line or as an external environment variable. * Fix syntax error in release_impl_purify.scons (previously unused). * Add a central $CHROMIUM_CC_OPT_FLAGS variable (included in $CCFLAGS) that can be used to set explicitly the optimization level without having to worry about optimization flags being pulled in from other settings files. Review URL: http://codereview.chromium.org/11368 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5887 0039d316-1c4b-4281-b951-d872f2087c98
* Finish release (opt) builds on Windows, including the parallelsgk@google.com2008-11-2010-0/+325
| | | | | | | | | | | | | | | | | | | | | | | | | | | build\*.scons structure (mirroring build\*.vsprops files): * Use env.ApplySConscript() instead of env.SConscript with a hand-crafted dictionary defining 'env'. * Move various CPPPATH, CCFLAGS, CPPDEFINES, LIBS and LIBPATH definitions from build/SConscript.main and target-specific *.scons files into the build\*.scons files that mirror the existing build\*.vsprops hierarchy. * Use the new build\{debug,release}.scons files to update the windows_dbg and windows_opt construction environments. * Mirror current support for CHROME_BUILD_TYPE and CHROMIUM_BUILD external environment variables. * Remove hard-coded /TP options. * Massage $CXXFLAGS to remove $CCFLAGS, avoiding duplication of options on command lines. Handle the ripple effect in $PCHCOM by adding $CCFLAGS back to that command line. * Delete hammer's default settings of {CC,LINK}FLAGS_{DEBUG,OPTIMIZED} so they don't pollute our construction environments. * Update chrome config to link against v8 for opt, v8_g for dbg. * Get rid of fragile by-hand order of using_net.scons before other using_*.scons files. We're now using --start-group and --end-group on Linux to deal with dependency cycles in libraries. Review URL: http://codereview.chromium.org/11478 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5741 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the network state notifier and the corresponding DLL. This is likely ↵brettw@google.com2008-10-021-1/+1
| | | | | | | | | causing some startup performance regressions, and we don't really need it now anyway. We should have a different design when we implement this in the future. BUG=3076 Review URL: http://codereview.chromium.org/6404 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2808 0039d316-1c4b-4281-b951-d872f2087c98
* Merge the chrome_webkit_merge_branch back on to trunk. This brings ustc@google.com2008-10-011-1/+1
| | | | | | | up to webkit@36102. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2778 0039d316-1c4b-4281-b951-d872f2087c98
* Creating a coverage specific build configuration. This used to be a part of ↵niranjan@google.com2008-08-261-0/+12
| | | | | | the _purify build configuration. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1397 0039d316-1c4b-4281-b951-d872f2087c98
* Undo a change which had added /PROFILE to purify builds.erikkay@google.com2008-08-261-1/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1383 0039d316-1c4b-4281-b951-d872f2087c98
* Disable linker warning LNK4221: "no public symbols found; archive member ↵maruel@google.com2008-08-261-1/+2
| | | | | | will be inaccessible" since it is unnecessary and clutter the build output. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1381 0039d316-1c4b-4281-b951-d872f2087c98
* Disable Frame Pointer Omission optimization in default release, the CHECK ↵maruel@google.com2008-08-234-1/+8
| | | | | | | | ENABLED and the DOM STATS builds. OmitFramePointers="false" doesn't work since this attribute would have needed to be tri-state to work correctly. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1284 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the final gcc warnings in base and net. Provide some macros to ↵mmentovai@google.com2008-08-211-1/+1
| | | | | | selectively disable MSVC warnings. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1194 0039d316-1c4b-4281-b951-d872f2087c98
* Unrollback r1158.rahulk@google.com2008-08-212-0/+8
| | | | | | | BUG=1296800 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1170 0039d316-1c4b-4281-b951-d872f2087c98
* Disable warning 4355 on Windows builds: "'this' : used in base member ↵maruel@google.com2008-08-201-1/+1
| | | | | | initializer list". git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1100 0039d316-1c4b-4281-b951-d872f2087c98
* Remove /Wp64 compiler flag as it gets in the way of the porting effort. This ↵maruel@google.com2008-08-181-6/+5
| | | | | | | | is not substitute to porting to x64. BUG=1308991 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@995 0039d316-1c4b-4281-b951-d872f2087c98
* Adding preprocessor definitions to separate Google Chrome from Chromium. rahulk@google.com2008-08-133-0/+25
| | | | | | | | | | | - I assume we will need to build Debug version also for Google Chrome. - Code changes will come soon that will rely on GOOGLE_CHROME_BUILD being defined to add Google branding. - Currently I do not want to change the default behavior so it is inhreiting chromium_build_google_chrome.vsprops. Once buildbot scripts have been configured properly and we know what to do for developers machines, we will inherit chromium_build$CHROMIUM_BUILD.vsprops BUG=1296800 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@809 0039d316-1c4b-4281-b951-d872f2087c98
* Reapply 382 since it wasn't the cause of the build breakage.maruel@google.com2008-08-051-1/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@395 0039d316-1c4b-4281-b951-d872f2087c98
* Revert revision 382 to see if it fixes the build.nsylvain@google.com2008-08-051-2/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@391 0039d316-1c4b-4281-b951-d872f2087c98
* M internal/release_impl_purify.vspropsniranjan@google.com2008-08-051-1/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@382 0039d316-1c4b-4281-b951-d872f2087c98
* Fix two issues with Visual Studio 2008.maruel@google.com2008-07-301-1/+1
| | | | | | BUG=1290595 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126 0039d316-1c4b-4281-b951-d872f2087c98
* Add the build directory to the repository.initial.commit2008-07-2610-0/+285
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7 0039d316-1c4b-4281-b951-d872f2087c98