summaryrefslogtreecommitdiffstats
path: root/build/internal
diff options
context:
space:
mode:
Diffstat (limited to 'build/internal')
-rw-r--r--build/internal/README.google3
-rw-r--r--build/internal/chromium_build.vsprops11
-rw-r--r--build/internal/chromium_build_google_chrome.vsprops11
3 files changed, 25 insertions, 0 deletions
diff --git a/build/internal/README.google b/build/internal/README.google
index 4624830..9fadd12 100644
--- a/build/internal/README.google
+++ b/build/internal/README.google
@@ -1,4 +1,7 @@
Internal property sheets:
+ chromium_build*.vsprops
+ Defines preprocessor definitions to control the various flavors of Chromium (currently Chromium or Google Chrome). The appropriate chromium_build*.vsprops file gets included in debug.vsprops and release.vsprops based on CHROMIUM_BUILD environment variable.
+
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.
diff --git a/build/internal/chromium_build.vsprops b/build/internal/chromium_build.vsprops
new file mode 100644
index 0000000..9fdb4e1
--- /dev/null
+++ b/build/internal/chromium_build.vsprops
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioPropertySheet
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="chromium_build"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ PreprocessorDefinitions="CHROMIUM_BUILD"
+ />
+</VisualStudioPropertySheet>
diff --git a/build/internal/chromium_build_google_chrome.vsprops b/build/internal/chromium_build_google_chrome.vsprops
new file mode 100644
index 0000000..aa11b8a
--- /dev/null
+++ b/build/internal/chromium_build_google_chrome.vsprops
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioPropertySheet
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="chromium_build"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ PreprocessorDefinitions="GOOGLE_CHROME_BUILD"
+ />
+</VisualStudioPropertySheet>