summaryrefslogtreecommitdiffstats
path: root/base/posix
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-13 17:10:56 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-13 17:10:56 +0000
commitc0822d7f9288ed13dce228ae3c3ed080e9712e3f (patch)
tree0bd24ec61541fa5013a1e4a2ba935279fe63779d /base/posix
parentf661bb53f2baf0f52c83e5c3f82efab6b9fc053b (diff)
downloadchromium_src-c0822d7f9288ed13dce228ae3c3ed080e9712e3f.zip
chromium_src-c0822d7f9288ed13dce228ae3c3ed080e9712e3f.tar.gz
chromium_src-c0822d7f9288ed13dce228ae3c3ed080e9712e3f.tar.bz2
Split apart various target type code.
This splits apart the "generators" that fill the Target objects from script, and the "writers" that write the .ninja files. These now have different objects and files for the basic target types. The result is that it looks like much more stuff due to the extra files, but it should be easier to follow what's happening and to make additions in the future. Remove some extra loadable module stuff I missed in the previous removal. Adds more support for the Linux build. Not everything is working yet, but most of base compiles. This actually writes .ninja files and targets for "group" types, and removes the "none" target type which this mapped to before. This way you can make a target group and actually compile that set of stuff by typing its name. BUG= R=scottmg@chromium.org Review URL: https://codereview.chromium.org/22488015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@217279 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/posix')
-rw-r--r--base/posix/file_descriptor_shuffle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/posix/file_descriptor_shuffle.h b/base/posix/file_descriptor_shuffle.h
index 6888c3e..9cd918f 100644
--- a/base/posix/file_descriptor_shuffle.h
+++ b/base/posix/file_descriptor_shuffle.h
@@ -47,7 +47,7 @@ class InjectionDelegate {
// An implementation of the InjectionDelegate interface using the file
// descriptor table of the current process as the domain.
-class FileDescriptorTableInjection : public InjectionDelegate {
+class BASE_EXPORT FileDescriptorTableInjection : public InjectionDelegate {
virtual bool Duplicate(int* result, int fd) OVERRIDE;
virtual bool Move(int src, int dest) OVERRIDE;
virtual void Close(int fd) OVERRIDE;