From 35456abfb3fa9a3028260b8b30781a7d862712af Mon Sep 17 00:00:00 2001 From: "kinuko@chromium.org" Date: Tue, 11 Jun 2013 10:57:39 +0000 Subject: 2nd try: Split webkit_storage target into webkit_storage_{browser,common,renderer} This does: - Remove all webkit/browser/foo/*.gypi, webkit/common/foo/*.gypi for storage - Add three top-level gyp's in webkit/: storage_{browser,common,renderer}.gyp storage_common and storage_renderer might be able to be subsumed in bigger targets for common|renderer, but believe we can do that later when necessary. Original review: https://codereview.chromium.org/15716007/ BUG=239109 TBR=jamesr@chromium.org,mnaganov@chromium.org,thestig@chromium.org,avi@chromium.org NOTRY=true Review URL: https://chromiumcodereview.appspot.com/16091011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205489 0039d316-1c4b-4281-b951-d872f2087c98 --- build/split_link_partition.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'build') diff --git a/build/split_link_partition.py b/build/split_link_partition.py index 2e3c0d6..ac7c2c6 100644 --- a/build/split_link_partition.py +++ b/build/split_link_partition.py @@ -171,11 +171,11 @@ (r'\bui\.lib$', r'ui_base_switches\.obj$'), (r'webkit.*plugins_common\.lib$', r'plugin_switches\.obj$'), (r'webkit.*plugins_common\.lib$', r'plugin_constants'), - (r'webkit.*storage\.lib$', r'appcache_interfaces\.obj$'), - (r'webkit.*storage\.lib$', r'database_tracker\.obj$'), - (r'webkit.*storage\.lib$', r'database_util\.obj$'), - (r'webkit.*storage\.lib$', r'file_permission_policy\.obj$'), - (r'webkit.*storage\.lib$', r'file_system_task_runners\.obj$'), + (r'webkit.*storage_common\.lib$', r'appcache_interfaces\.obj$'), + (r'webkit.*storage_browser\.lib$', r'database_tracker\.obj$'), + (r'webkit.*storage_browser\.lib$', r'database_util\.obj$'), + (r'webkit.*storage_browser\.lib$', r'file_permission_policy\.obj$'), + (r'webkit.*storage_browser\.lib$', r'file_system_task_runners\.obj$'), ], # This manifest will be merged with the intermediate one from the linker, -- cgit v1.1