forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged all Chromoting Host code into remoting_core.dll (Windows).
Consolidated all installable Chromoting Host core into remoting_core.dll and converted all executables into thin wrappers around entry points exposed by remoting_core.dll. This reduces size of the installer by approximately 600KB. This is the 2nd attempt to land this CL. It was previously reverted at r179322. BUG=170200 Review URL: https://codereview.chromium.org/12088049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@179373 0039d316-1c4b-4281-b951-d872f2087c98
- Loading branch information
alexeypa@chromium.org
committed
Jan 29, 2013
1 parent
8c6ca86
commit 96ca5d7
Showing
37 changed files
with
678 additions
and
643 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright (c) 2012 The Chromium Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
#ifndef REMOTING_HOST_DESKTOP_PROCESS_MAIN_H_ | ||
#define REMOTING_HOST_DESKTOP_PROCESS_MAIN_H_ | ||
|
||
#include "remoting/host/host_export.h" | ||
|
||
namespace remoting { | ||
|
||
// The desktop process's entry point. | ||
HOST_EXPORT int DesktopProcessMain(int argc, char** argv); | ||
|
||
} // namespace remoting | ||
|
||
#endif // REMOTING_HOST_DESKTOP_PROCESS_MAIN_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright (c) 2013 The Chromium Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
#ifndef REMOTING_HOST_HOST_EXPORT_H_ | ||
#define REMOTING_HOST_HOST_EXPORT_H_ | ||
|
||
#if defined(WIN32) | ||
|
||
#if defined(HOST_IMPLEMENTATION) | ||
#define HOST_EXPORT __declspec(dllexport) | ||
#else | ||
#define HOST_EXPORT __declspec(dllimport) | ||
#endif // defined(HOST_IMPLEMENTATION) | ||
|
||
#else // !defined(WIN32) | ||
#if defined(HOST_IMPLEMENTATION) | ||
#define HOST_EXPORT __attribute__((visibility("default"))) | ||
#else | ||
#define HOST_EXPORT | ||
#endif // defined(HOST_IMPLEMENTATION) | ||
#endif // !defined(WIN32) | ||
|
||
#endif // REMOTING_HOST_HOST_EXPORT_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.