diff --git a/atom.gyp b/atom.gyp index 0e2b19bf1830..9bea1284242c 100644 --- a/atom.gyp +++ b/atom.gyp @@ -313,6 +313,7 @@ }, 'mac_bundle_resources': [ '<@(bundle_sources)', + '<(libchromiumcontent_resources_dir)/icudtl.dat', ], 'copies': [ { @@ -377,7 +378,6 @@ 'files': [ '<(libchromiumcontent_library_dir)/chromiumcontent.dll', '<(libchromiumcontent_library_dir)/ffmpegsumo.dll', - '<(libchromiumcontent_library_dir)/icudt.dll', '<(libchromiumcontent_library_dir)/libEGL.dll', '<(libchromiumcontent_library_dir)/libGLESv2.dll', '<(libchromiumcontent_resources_dir)/icudtl.dat', @@ -663,7 +663,6 @@ 'mac_bundle_resources': [ 'atom/common/resources/mac/MainMenu.xib', '<(libchromiumcontent_resources_dir)/content_shell.pak', - '<(libchromiumcontent_resources_dir)/icudtl.dat', ], 'xcode_settings': { 'INFOPLIST_FILE': 'atom/common/resources/mac/Info.plist', diff --git a/atom/app/atom_main_delegate.cc b/atom/app/atom_main_delegate.cc index bbee2527ff4c..fa07016b2e3c 100644 --- a/atom/app/atom_main_delegate.cc +++ b/atom/app/atom_main_delegate.cc @@ -52,10 +52,6 @@ bool AtomMainDelegate::BasicStartupComplete(int* exit_code) { } void AtomMainDelegate::PreSandboxStartup() { -#if defined(OS_MACOSX) - OverrideChildProcessPath(); - OverrideFrameworkBundlePath(); -#endif InitializeResourceBundle(); CommandLine* command_line = CommandLine::ForCurrentProcess();