diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/browser.scons | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/chrome/browser/browser.scons b/chrome/browser/browser.scons index 4797c10..840013f 100644 --- a/chrome/browser/browser.scons +++ b/chrome/browser/browser.scons @@ -83,7 +83,6 @@ if env['PLATFORM'] in ('posix', 'win32'): 'importer/firefox2_importer.cc', 'importer/firefox3_importer.cc', 'importer/firefox_profile_lock.cc', - 'importer/firefox_profile_lock_posix.cc', 'importer/mork_reader.cc', 'meta_table_helper.cc', 'metrics_log.cc', @@ -296,10 +295,15 @@ if env['PLATFORM'] == 'win32': env.TypeLibrary('history/history_indexer.idl') input_files.extend([ - 'web_contents_view_win.cc', + 'importer/firefox_profile_lock_win.cc', 'render_widget_host_view_win.cc', + 'web_contents_view_win.cc', ]) +if env['PLATFORM'] in ('darwin', 'posix'): + input_files.extend([ + 'importer/firefox_profile_lock_posix.cc', + ]) if env['PLATFORM'] in ('posix', 'win32'): # TODO: This should work for all platforms. |