summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-08 00:14:17 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-08 00:14:17 +0000
commit0a999393b6ff0b45e70ad14e3c3e637da5ec8119 (patch)
tree5196baa57b53c61cbb8f949212758e000e91e8c3 /build
parent1d2d5a40c5db4efc968e74bfb0baf49c8a6e3adc (diff)
downloadchromium_src-0a999393b6ff0b45e70ad14e3c3e637da5ec8119.zip
chromium_src-0a999393b6ff0b45e70ad14e3c3e637da5ec8119.tar.gz
chromium_src-0a999393b6ff0b45e70ad14e3c3e637da5ec8119.tar.bz2
Add chrome_split_dll gyp variable, and duplicate chrome_main_dll target
Currently contains chrome_browser_dll target. Removes some paths from browser->webcore via content that are there due to single process mode, and removes dependency of content on content_renderer. Current remaining paths from chrome_browser_dll to webcore: http://i.imgur.com/7WWRvpA.jpg R=cpu@chromium.org BUG=237249 Review URL: https://chromiumcodereview.appspot.com/14682014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198834 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi7
1 files changed, 7 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 3a6badf..a44285c 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -888,6 +888,10 @@
# to get incremental linking to be faster in debug builds.
'incremental_chrome_dll%': '0',
+ # Experimental setting to break chrome.dll in to chrome_browser.dll and
+ # chrome_child.dll.
+ 'chrome_split_dll%': '0',
+
# The default settings for third party code for treating
# warnings-as-errors. Ideally, this would not be required, however there
# is some third party code that takes a long time to fix/roll. So, this
@@ -1809,6 +1813,9 @@
'<(DEPTH)/base/allocator/allocator.gyp:type_profiler',
],
}],
+ ['chrome_split_dll', {
+ 'defines': ['CHROME_SPLIT_DLL'],
+ }],
['OS=="linux" and clang==1 and host_arch=="ia32"', {
# TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed.
# See http://crbug.com/162818.