OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 # Webdata is being made into a component (it will end up at | |
3 # //components/webdata and not depend on //chrome), so we have these basic | |
4 # rules followed by temporary exceptions. Please don't add to the list of | |
5 # exceptions! | |
6 "+components/encryptor", | 2 "+components/encryptor", |
7 "+content/public/browser", | 3 "+content/public/browser", |
8 "+sql", | 4 "+sql", |
9 "+ui", | 5 "+ui", |
10 ] | 6 ] |
| 7 |
| 8 specific_include_rules = { |
| 9 # TODO(caitkp): Extract unit tests from //chrome, at lower priority |
| 10 # than production code. |
| 11 r'(.*_unittest|.*_test_util)\.(cc|h)': [ |
| 12 "+chrome/browser/webdata/keyword_table.h", |
| 13 "+chrome/browser/webdata/logins_table.h", |
| 14 "+chrome/browser/webdata/token_service_table.h", |
| 15 "+chrome/browser/webdata/web_apps_table.h", |
| 16 "+chrome/browser/webdata/web_data_service.h", |
| 17 "+chrome/browser/webdata/web_data_service_factory.h", |
| 18 "+chrome/browser/webdata/web_intents_table.h", |
| 19 "+chrome/test/base/ui_test_utils.h", |
| 20 "+content/public/test", |
| 21 "+testing/gmock/include/gmock/gmock.h", |
| 22 "+testing/gtest/include/gtest/gtest.h", |
| 23 ], |
| 24 } |
OLD | NEW |