| Index: chrome/common/common.scons
|
| diff --git a/chrome/common/common.scons b/chrome/common/common.scons
|
| index 06a9888e3cad9b29d1da9f59e2f627d412df633a..b2cc936095c956030a9aef281e65feb646f18bd7 100644
|
| --- a/chrome/common/common.scons
|
| +++ b/chrome/common/common.scons
|
| @@ -275,6 +275,21 @@ if not env.Bit('posix'):
|
| 'ipc_channel_posix.cc',
|
| )
|
|
|
| +if env.Bit('windows'):
|
| + input_files.Append(
|
| + 'transport_dib_win.cc'
|
| + )
|
| +
|
| +if env.Bit('linux'):
|
| + input_files.Append(
|
| + 'transport_dib_linux.cc'
|
| + )
|
| +
|
| +if env.Bit('mac'):
|
| + input_files.Append(
|
| + 'transport_dib_mac.cc'
|
| + )
|
| +
|
| if not env.Bit('mac'):
|
| # TODO(port): This should be enabled for all platforms.
|
| env.ChromeLibrary('common', input_files)
|
|
|