summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-10 23:24:31 +0000
committerdpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-10 23:24:31 +0000
commit4f511e4dcb88be361b2299af791628d18ff3eb4e (patch)
treededfcf0a8cc237afbdda953bface7b8425e68568
parentcc4ecdf5001345d375e34f7430bbca42988d057f (diff)
downloadchromium_src-4f511e4dcb88be361b2299af791628d18ff3eb4e.zip
chromium_src-4f511e4dcb88be361b2299af791628d18ff3eb4e.tar.gz
chromium_src-4f511e4dcb88be361b2299af791628d18ff3eb4e.tar.bz2
reenable component build w/ fix to test_support_content
TBR=jam@chromium.org BUG=90442 TEST=the win shared debug builder compiles Review URL: http://codereview.chromium.org/8501025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109534 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/chrome_exe.gypi4
-rw-r--r--chrome/chrome_installer_util.gypi19
-rw-r--r--chrome/chrome_tests.gypi20
-rw-r--r--chrome/nacl.gypi1
-rw-r--r--content/browser/net/url_request_abort_on_end_job.h3
-rw-r--r--content/common/content_export.h2
-rw-r--r--content/content.gyp7
-rw-r--r--webkit/appcache/appcache_export.h3
-rw-r--r--webkit/appcache/webkit_appcache.gypi15
9 files changed, 61 insertions, 13 deletions
diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi
index e19d4ea..b5b1997 100644
--- a/chrome/chrome_exe.gypi
+++ b/chrome/chrome_exe.gypi
@@ -495,6 +495,9 @@
'app/client_util.cc',
],
}],
+ ['OS=="win" and component=="shared_library"', {
+ 'defines': ['COMPILE_CONTENT_STATICALLY'],
+ }]
],
},
],
@@ -534,6 +537,7 @@
],
'defines': [
'<@(nacl_win64_defines)',
+ 'COMPILE_CONTENT_STATICALLY',
],
'include_dirs': [
'<(SHARED_INTERMEDIATE_DIR)/chrome',
diff --git a/chrome/chrome_installer_util.gypi b/chrome/chrome_installer_util.gypi
index f6bbe07..fdb17d66 100644
--- a/chrome/chrome_installer_util.gypi
+++ b/chrome/chrome_installer_util.gypi
@@ -97,13 +97,13 @@
},
'dependencies': [
'installer_util_strings',
- '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
'common_constants',
'chrome_resources.gyp:chrome_resources',
'chrome_resources.gyp:chrome_strings',
- '../content/content.gyp:content_common',
'<(DEPTH)/base/base.gyp:base',
'<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
+ '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
+ '<(DEPTH)/content/content.gyp:content_common',
'<(DEPTH)/courgette/courgette.gyp:courgette_lib',
'<(DEPTH)/third_party/bspatch/bspatch.gyp:bspatch',
'<(DEPTH)/third_party/icu/icu.gyp:icui18n',
@@ -141,6 +141,14 @@
'installer/util/shell_util.cc',
'installer/util/shell_util.h',
],
+ 'conditions': [
+ ['component == "shared_library"', {
+ 'sources': [ '../content/public/common/content_switches.cc' ],
+ 'defines': [ 'COMPILE_CONTENT_STATICALLY'],
+ }, {
+ 'dependencies': ['<(DEPTH)/content/content.gyp:content_common'],
+ }],
+ ],
},
{
'target_name': 'installer_util_nacl_win64',
@@ -186,8 +194,15 @@
'include_dirs': [
'<(DEPTH)',
],
+ 'conditions': [
+ ['component == "shared_library"', {
+ 'sources': [ '../content/public/common/content_switches.cc' ],
+ 'defines': [ 'COMPILE_CONTENT_STATICALLY'],
+ }],
+ ],
}
],
}],
+
],
}
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi
index 85bdd44..5a1d88d 100644
--- a/chrome/chrome_tests.gypi
+++ b/chrome/chrome_tests.gypi
@@ -2341,6 +2341,16 @@
'browser/printing/print_system_task_proxy_unittest.cc',
],
}],
+ ['component == "shared_library"', {
+ # This is needed for tests that subclass
+ # RendererWebKitPlatformSupportImpl, which subclasses stuff in
+ # glue, which refers to symbols defined in these files.
+ # Hopefully this can be resolved with http://crbug.com/98755.
+ 'sources': [
+ '../content/renderer/renderer_glue.cc',
+ '../content/common/socket_stream_dispatcher.cc',
+ ]},
+ ],
],
},
{
@@ -2945,6 +2955,16 @@
'../webkit/webkit.gyp:copy_npapi_test_plugin',
],
}],
+ ['component == "shared_library"', {
+ # This is needed for tests that subclass
+ # RendererWebKitPlatformSupportImpl, which subclasses stuff in
+ # glue, which refers to symbols defined in these files.
+ # Hopefully this can be resolved with http://crbug.com/98755.
+ 'sources': [
+ '../content/renderer/renderer_glue.cc',
+ '../content/common/socket_stream_dispatcher.cc',
+ ]},
+ ],
], # conditions
}, # target browser_tests
{
diff --git a/chrome/nacl.gypi b/chrome/nacl.gypi
index 79225e2..8313b64 100644
--- a/chrome/nacl.gypi
+++ b/chrome/nacl.gypi
@@ -178,6 +178,7 @@
],
'defines': [
'<@(nacl_win64_defines)',
+ 'COMPILE_CONTENT_STATICALLY',
],
'configurations': {
'Common_Base': {
diff --git a/content/browser/net/url_request_abort_on_end_job.h b/content/browser/net/url_request_abort_on_end_job.h
index 8bb4b93..52a9b1d 100644
--- a/content/browser/net/url_request_abort_on_end_job.h
+++ b/content/browser/net/url_request_abort_on_end_job.h
@@ -12,7 +12,6 @@
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/weak_ptr.h"
-#include "content/common/content_export.h"
#include "net/url_request/url_request_job.h"
// This url request simulates a network error which occurs immediately after
@@ -33,7 +32,7 @@ class URLRequestAbortOnEndJob : public net::URLRequestJob {
static net::URLRequestJob* Factory(net::URLRequest* request,
const std::string& scheme);
- CONTENT_EXPORT static void AddUrlHandler();
+ static void AddUrlHandler();
private:
explicit URLRequestAbortOnEndJob(net::URLRequest* request);
diff --git a/content/common/content_export.h b/content/common/content_export.h
index fc91b72c..b39cdd5 100644
--- a/content/common/content_export.h
+++ b/content/common/content_export.h
@@ -6,7 +6,7 @@
#define CONTENT_COMMON_CONTENT_EXPORT_H_
#pragma once
-#if 0 // TODO(dpranke): Uncomment: defined(COMPONENT_BUILD).
+#if defined(COMPONENT_BUILD) && !defined(COMPILE_CONTENT_STATICALLY)
#if defined(WIN32)
#if defined(CONTENT_IMPLEMENTATION)
diff --git a/content/content.gyp b/content/content.gyp
index 311c714..a08d7d8 100644
--- a/content/content.gyp
+++ b/content/content.gyp
@@ -22,8 +22,11 @@
# upstream unnecessarily (e.g., content_renderer depends on allocator
# and chrome_exe depends on content_common but we don't want
# chrome_exe to have to depend on allocator).
- # TODO(dpranke): Uncomment: ['component == "static_library"', {
- ['1 == 1', {
+ #
+ # TODO(dpranke): Remove the mac conditional once the circular
+ # dependencies in WebKit.gyp are fixed.
+ # See https://bugs.webkit.org/show_bug.cgi?id=68463
+ ['OS == "mac" or component == "static_library"', {
'targets': [
{'target_name': 'content',
'type': 'none',
diff --git a/webkit/appcache/appcache_export.h b/webkit/appcache/appcache_export.h
index 130816a..ece56ee 100644
--- a/webkit/appcache/appcache_export.h
+++ b/webkit/appcache/appcache_export.h
@@ -6,8 +6,7 @@
#define WEBKIT_APPCACHE_APPCACHE_EXPORT_H_
#pragma once
-// TODO(dpranke): Uncomment to enable appcache component build.
-#if 0 // defined(COMPONENT_BUILD)
+#if defined(COMPONENT_BUILD)
#if defined(WIN32)
#if defined(APPCACHE_IMPLEMENTATION)
diff --git a/webkit/appcache/webkit_appcache.gypi b/webkit/appcache/webkit_appcache.gypi
index 1c7c13b..724b0a0 100644
--- a/webkit/appcache/webkit_appcache.gypi
+++ b/webkit/appcache/webkit_appcache.gypi
@@ -6,9 +6,6 @@
'targets': [
{
'target_name': 'appcache',
- # TODO(dpranke): Uncomment '<(component)',
- # 'type': '<(component)',
- 'type': 'static_library',
'defines': [
'APPCACHE_IMPLEMENTATION',
],
@@ -19,7 +16,6 @@
'<(DEPTH)/net/net.gyp:net',
'<(DEPTH)/sql/sql.gyp:sql',
'<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
- # TODO(dpranke): Uncomment '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
],
'sources': [
# This list contains all .h and .cc in appcache except for test code.
@@ -73,6 +69,17 @@
'webkit_appcache.gypi',
],
'conditions': [
+ [# TODO(dpranke): Remove once the circular dependencies in
+ # WebKit.gyp are fixed on the mac.
+ # See https://bugs.webkit.org/show_bug.cgi?id=68463
+ 'OS=="mac"', {
+ 'type': 'static_library',
+ }, {
+ 'type': '<(component)',
+ 'dependencies': [
+ '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
+ ],
+ }],
['inside_chromium_build==0', {
'dependencies': [
'<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',