OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+chrome/plugin", # For checking whether we're a plugin process. | 2 "+chrome/plugin", # For checking whether we're a plugin process. |
3 "+chrome/default_plugin", | 3 "+chrome/default_plugin", |
4 "+grit", # For generated headers | 4 "+grit", # For generated headers |
5 "+libxml", | 5 "+libxml", |
6 "+ppapi/c", # For various types. | 6 "+ppapi/c", # For various types. |
7 "+ppapi/proxy", | 7 "+ppapi/proxy", |
8 "+remoting/client/plugin", | 8 "+remoting/client/plugin", |
9 "+sandbox/src", | 9 "+sandbox/src", |
10 "+skia", | 10 "+skia", |
11 "+webkit/glue", | 11 "+webkit/glue", |
12 "+webkit/plugins", | 12 "+webkit/plugins", |
13 | 13 |
| 14 # TODO(jam): remove this once all of chrome doesn't depend on content/common. |
| 15 "-content/common", |
| 16 "+content/common/content_message_generator.h", # needed by all_messages.h |
| 17 |
14 # TODO(jam): remove me once chrome_notifcation_types.h moves to browser | 18 # TODO(jam): remove me once chrome_notifcation_types.h moves to browser |
15 "+content/public/browser/notification_source.h", | 19 "+content/public/browser/notification_source.h", |
16 "+content/public/browser/notification_types.h", | 20 "+content/public/browser/notification_types.h", |
17 | 21 |
18 # Other libraries. | 22 # Other libraries. |
19 "+chrome/third_party/xdg_user_dirs", | 23 "+chrome/third_party/xdg_user_dirs", |
20 "+third_party/bzip2", | 24 "+third_party/bzip2", |
21 "+third_party/npapi", | 25 "+third_party/npapi", |
22 "+third_party/sqlite", | 26 "+third_party/sqlite", |
23 "+third_party/zlib", | 27 "+third_party/zlib", |
24 | 28 |
25 # This is required by all_messages.h to allow logging of all messages. It | 29 # This is required by all_messages.h to allow logging of all messages. It |
26 # can't be moved to chrome/common/ because it has so many dependencies in | 30 # can't be moved to chrome/common/ because it has so many dependencies in |
27 # chrome/browser/. | 31 # chrome/browser/. |
28 "+chrome/browser/importer/profile_import_process_messages.h", | 32 "+chrome/browser/importer/profile_import_process_messages.h", |
29 | 33 |
30 # FIXME - refactor code and remove these dependencies | 34 # FIXME - refactor code and remove these dependencies |
31 "+chrome/installer", | 35 "+chrome/installer", |
32 ] | 36 ] |
OLD | NEW |