diff options
Diffstat (limited to 'build/internal')
-rw-r--r-- | build/internal/.svn/all-wcprops | 29 | ||||
-rw-r--r-- | build/internal/.svn/entries | 164 | ||||
-rw-r--r-- | build/internal/.svn/prop-base/README.chromium.svn-base | 9 | ||||
-rw-r--r-- | build/internal/.svn/text-base/README.chromium.svn-base | 24 | ||||
-rw-r--r-- | build/internal/.svn/text-base/release_defaults.gypi.svn-base | 15 | ||||
-rw-r--r-- | build/internal/.svn/text-base/release_impl.gypi.svn-base | 3 | ||||
-rw-r--r-- | build/internal/.svn/text-base/release_impl_official.gypi.svn-base | 21 |
7 files changed, 265 insertions, 0 deletions
diff --git a/build/internal/.svn/all-wcprops b/build/internal/.svn/all-wcprops new file mode 100644 index 0000000..fa3850c --- /dev/null +++ b/build/internal/.svn/all-wcprops @@ -0,0 +1,29 @@ +K 25 +svn:wc:ra_dav:version-url +V 44 +/svn/!svn/ver/42890/trunk/src/build/internal +END +README.chromium +K 25 +svn:wc:ra_dav:version-url +V 60 +/svn/!svn/ver/35367/trunk/src/build/internal/README.chromium +END +release_impl_official.gypi +K 25 +svn:wc:ra_dav:version-url +V 71 +/svn/!svn/ver/42890/trunk/src/build/internal/release_impl_official.gypi +END +release_impl.gypi +K 25 +svn:wc:ra_dav:version-url +V 62 +/svn/!svn/ver/35449/trunk/src/build/internal/release_impl.gypi +END +release_defaults.gypi +K 25 +svn:wc:ra_dav:version-url +V 66 +/svn/!svn/ver/35449/trunk/src/build/internal/release_defaults.gypi +END diff --git a/build/internal/.svn/entries b/build/internal/.svn/entries new file mode 100644 index 0000000..e54058f --- /dev/null +++ b/build/internal/.svn/entries @@ -0,0 +1,164 @@ +10 + +dir +70875 +http://src.chromium.org/svn/trunk/src/build/internal +http://src.chromium.org/svn + + + +2010-03-27T02:16:29.574773Z +42890 +maruel@chromium.org + + + + + + + + + + + + + + +4ff67af0-8c30-449e-8e8b-ad334ec8d88c + +README.chromium +file + + + + +2011-05-16T13:12:11.000000Z +29a46a46f286c28702edc38b379270e7 +2009-12-30T04:39:17.822713Z +35367 +bradnelson@google.com +has-props + + + + + + + + + + + + + + + + + + + + +2189 + +release_impl_official.gypi +file + + + + +2011-05-16T13:12:11.000000Z +2323279bd929cdb8c81e6b8ff1de8421 +2010-03-27T02:16:29.574773Z +42890 +maruel@chromium.org + + + + + + + + + + + + + + + + + + + + + +567 + +release_impl.gypi +file + + + + +2011-05-16T13:12:11.000000Z +3f7460c6ff5f62fe8ac611440a2aeab0 +2010-01-04T06:40:16.325670Z +35449 +bradnelson@google.com + + + + + + + + + + + + + + + + + + + + + +45 + +release_defaults.gypi +file + + + + +2011-05-16T13:12:11.000000Z +94e7cde3c64a768becc543257895f783 +2010-01-04T06:40:16.325670Z +35449 +bradnelson@google.com + + + + + + + + + + + + + + + + + + + + + +318 + diff --git a/build/internal/.svn/prop-base/README.chromium.svn-base b/build/internal/.svn/prop-base/README.chromium.svn-base new file mode 100644 index 0000000..92de39c --- /dev/null +++ b/build/internal/.svn/prop-base/README.chromium.svn-base @@ -0,0 +1,9 @@ +K 13 +svn:eol-style +V 2 +LF +K 13 +svn:mergeinfo +V 73 +/branches/chrome_webkit_merge_branch/build/internal/README.google:69-2775 +END diff --git a/build/internal/.svn/text-base/README.chromium.svn-base b/build/internal/.svn/text-base/README.chromium.svn-base new file mode 100644 index 0000000..4624830 --- /dev/null +++ b/build/internal/.svn/text-base/README.chromium.svn-base @@ -0,0 +1,24 @@ +Internal property sheets: + essential.vsprops + Contains the common settings used throughout the projects. Is included by either ..\debug.vsprops or ..\release.vsprops, so in general, it is not included directly. + + release_defaults.vsprops + Included by ..\release.vsprops. Its settings are overriden by release_impl$(CHROME_BUILD_TYPE).vsprops. Uses the default VS setting which is "Maximize Speed". Results in relatively fast build with reasonable optimization level but without whole program optimization to reduce build time. + + release_impl.vsprops + Included by ..\release.vsprops by default when CHROME_BUILD_TYPE is undefined. Includes release_defaults.vsprops. + + release_impl_checksenabled.vsprops + Included by ..\release.vsprops when CHROME_BUILD_TYPE=_checksenabled. Matches what release_defaults.vsprops does, but doesn't actually inherit from it as we couldn't quite get that working. The only difference is that _DEBUG is set instead of NDEBUG. Used for keeping debug checks enabled with a build that is fast enough to dogfood with. + + release_impl_official.vsprops + Included by ..\release.vsprops when CHROME_BUILD_TYPE=_official. Includes release_defaults.vsprops. Enables Whole Program Optimizations (WPO), which doubles the build time. Results in much more optimized build. Uses "Full Optimization" and "Flavor small code". + + release_impl_pgo_instrument.vsprops + Included by ..\release.vsprops when CHROME_BUILD_TYPE=_pgo_instrument. Includes release_defaults.vsprops. Enables Profile Guided Optimization (PGO) instrumentation (first pass). Uses "Full Optimization" and "Flavor small code". + + release_impl_pgo_optimize.vsprops + Included by ..\release.vsprops when CHROME_BUILD_TYPE=_pgo_optimize. Includes release_defaults.vsprops. Enables Profile Guided Optimization (PGO) optimization (second pass). Uses "Full Optimization" and "Flavor small code". + + release_impl_purify.vsprops + Included by ..\release.vsprops when CHROME_BUILD_TYPE=_purify. Includes release_defaults.vsprops. Disables optimizations. Used with Purify to test without debug tools and without optimization; i.e. NDEBUG is defined but the compiler doesn't optimize the binary. diff --git a/build/internal/.svn/text-base/release_defaults.gypi.svn-base b/build/internal/.svn/text-base/release_defaults.gypi.svn-base new file mode 100644 index 0000000..5aa2b75 --- /dev/null +++ b/build/internal/.svn/text-base/release_defaults.gypi.svn-base @@ -0,0 +1,15 @@ +{ + 'msvs_settings': { + 'VCCLCompilerTool': { + 'Optimizations': '2', + 'StringPooling': 'true', + 'OmitFramePointers': 'true', + }, + 'VCLinkerTool': { + 'LinkIncremental': '1', + 'OptimizeReferences': '2', + 'EnableCOMDATFolding': '2', + 'OptimizeForWindows98': '1', + }, + }, +} diff --git a/build/internal/.svn/text-base/release_impl.gypi.svn-base b/build/internal/.svn/text-base/release_impl.gypi.svn-base new file mode 100644 index 0000000..aff06dc --- /dev/null +++ b/build/internal/.svn/text-base/release_impl.gypi.svn-base @@ -0,0 +1,3 @@ +{ + 'includes': ['release_defaults.gypi'], +} diff --git a/build/internal/.svn/text-base/release_impl_official.gypi.svn-base b/build/internal/.svn/text-base/release_impl_official.gypi.svn-base new file mode 100644 index 0000000..18f7928 --- /dev/null +++ b/build/internal/.svn/text-base/release_impl_official.gypi.svn-base @@ -0,0 +1,21 @@ +{ + 'includes': ['release_defaults.gypi'], + 'defines': ['OFFICIAL_BUILD'], + 'msvs_settings': { + 'VCCLCompilerTool': { + 'Optimization': '3', + 'InlineFunctionExpansion': '2', + 'EnableIntrinsicFunctions': 'true', + 'FavorSizeOrSpeed': '2', + 'OmitFramePointers': 'true', + 'EnableFiberSafeOptimizations': 'true', + 'WholeProgramOptimization': 'true', + }, + 'VCLibrarianTool': { + 'AdditionalOptions': ['/ltcg', '/expectedoutputsize:120000000'], + }, + 'VCLinkerTool': { + 'LinkTimeCodeGeneration': '1', + }, + }, +} |