Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1826)

Unified Diff: chrome/common/common.scons

Issue 21485: Bitmap transport (Closed)
Patch Set: Fix some mac crashes Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698