diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-29 20:53:52 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-29 20:53:52 +0000 |
commit | aa6e7976c9d3458dd8a47f8d4ba32626c0cce071 (patch) | |
tree | 2e8173d18465c4d8c422a364db1adae3370ad39d | |
parent | 45214d2a1d9e942946a21ae1ff0a1d7b7cc848f1 (diff) | |
download | chromium_src-aa6e7976c9d3458dd8a47f8d4ba32626c0cce071.zip chromium_src-aa6e7976c9d3458dd8a47f8d4ba32626c0cce071.tar.gz chromium_src-aa6e7976c9d3458dd8a47f8d4ba32626c0cce071.tar.bz2 |
add exports needed for content_shell
R=jam@chromium.org
BUG=90442
TEST=
Review URL: http://codereview.chromium.org/8071017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103344 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | content/app/startup_helper_win.h | 5 | ||||
-rw-r--r-- | content/content_shell.gypi | 10 |
2 files changed, 14 insertions, 1 deletions
diff --git a/content/app/startup_helper_win.h b/content/app/startup_helper_win.h index 5898e36..b870798 100644 --- a/content/app/startup_helper_win.h +++ b/content/app/startup_helper_win.h @@ -6,6 +6,8 @@ #define CONTENT_APP_STARTUP_HELPER_WIN_H_ #pragma once +#include "content/common/content_export.h" + class CommandLine; namespace sandbox { @@ -17,7 +19,8 @@ struct SandboxInterfaceInfo; namespace content { // Initializes the sandbox code and turns on DEP. -void InitializeSandboxInfo(sandbox::SandboxInterfaceInfo* sandbox_info); +CONTENT_EXPORT void InitializeSandboxInfo( + sandbox::SandboxInterfaceInfo* sandbox_info); // Register the invalid param handler and pure call handler to be able to // notify breakpad when it happens. diff --git a/content/content_shell.gypi b/content/content_shell.gypi index 71b1ecf..b1ad775 100644 --- a/content/content_shell.gypi +++ b/content/content_shell.gypi @@ -20,9 +20,19 @@ 'content_renderer', 'content_utility', 'content_worker', + '../base/base.gyp:base', + '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations', + '../build/temp_gyp/googleurl.gyp:googleurl', + '../ipc/ipc.gyp:ipc', + '../net/net.gyp:net', '../skia/skia.gyp:skia', '../ui/ui.gyp:ui', '../v8/tools/gyp/v8.gyp:v8', + '../webkit/support/webkit_support.gyp:appcache', + '../webkit/support/webkit_support.gyp:database', + '../webkit/support/webkit_support.gyp:fileapi', + '../webkit/support/webkit_support.gyp:glue', + '../webkit/support/webkit_support.gyp:quota', ], 'include_dirs': [ '..', |