diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 17:03:35 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 17:03:35 +0000 |
commit | 9bec23957253b83955c4096903ad6293d1c6e1bb (patch) | |
tree | 562f6b505b0df9a32084c11275f40c52d022ebf9 | |
parent | 9a1c1cfb23ab1a16f31beaf3eff9ae2334044a4e (diff) | |
download | chromium_src-9bec23957253b83955c4096903ad6293d1c6e1bb.zip chromium_src-9bec23957253b83955c4096903ad6293d1c6e1bb.tar.gz chromium_src-9bec23957253b83955c4096903ad6293d1c6e1bb.tar.bz2 |
Tighten up chrome/browser's DEPS so that we don't have any more includes from content/common while we remove the last ones.
BUG=98716
Review URL: http://codereview.chromium.org/8727035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111959 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/DEPS | 57 |
1 files changed, 18 insertions, 39 deletions
diff --git a/chrome/browser/DEPS b/chrome/browser/DEPS index b343177..48ffaa7 100644 --- a/chrome/browser/DEPS +++ b/chrome/browser/DEPS @@ -25,47 +25,26 @@ include_rules = [ "+webkit/plugins", # Defines some types that are marshalled over IPC. "+webkit/quota", "+xib_localizers", # For generated mac localization helpers - + # TODO(jam): this needs to be removed, and only use content/public. BUG=98716 "+content/browser", - # Temporary to avoid regressions until above is done. - "-content/common/appcache", - "-content/common/file_system", - "-content/common/gpu", - "-content/common/media", - "-content/common/net", - "-content/common/appcache_messages.h", - "-content/common/child_process_messages.h", - "-content/common/clipboard_messages.h", - "-content/common/database_messages.h", - "-content/common/desktop_notification_messages.h", - "-content/common/device_orientation_messages.h", - # TODO(pfeldman) "-content/common/dom_storage_messages.h", - "-content/common/dom_storage_messages.h", - "-content/common/drag_messages.h", - "-content/common/file_system_messages.h", - "-content/common/file_utilities_messages.h", - "-content/common/gamepad_messages.h", - # TODO(jam) "-content/common/geolocation_messages.h", - "-content/common/indexed_db_messages.h", - # TODO(jam) "-content/common/intents_messages.h", - "-content/common/java_bridge_messages.h", - "-content/common/mime_registry_messages.h", - "-content/common/p2p_messages.h", - "-content/common/pepper_file_messages.h", - "-content/common/pepper_messages.h", - "-content/common/plugin_messages.h", - "-content/common/quota_messages.h", - "-content/common/resource_messages.h", - "-content/common/socket_stream_messages.h", - "-content/common/speech_input_messages.h", - "-content/common/swapped_out_messages.h", - "-content/common/text_input_client_messages.h", - "-content/common/utility_messages.h", - # TODO(jam) "-content/common/view_messages.h", - "-content/common/view_message_enums.h", - "-content/common/webblob_messages.h", - "-content/common/worker_messages.h", + + "-content/common", + # TODO(jam): remove all the exceptions. BUG=98716 + "+content/common/child_process.h", + "+content/common/child_process_host.h", + "+content/common/child_process_info.h", + "+content/common/chrome_application_mac.h", + "+content/common/geolocation_messages.h", + "+content/common/geoposition.h", + "+content/common/mac/scoped_sending_event.h", + "+content/common/pepper_plugin_registry.h", + "+content/common/test_url_constants.h", + "+content/common/view_messages.h", + # TODO(pfeldman) + "+content/common/devtools_messages.h", + # TODO(gbilock) + "+content/common/intents_messages.h", # Other libraries. "+chrome/third_party/hunspell", |