| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 # Much of WebData is being broken off and moved into a component | 2 # Much of WebData is being broken off and moved into a component |
| 3 # under //components/webdata, that does not depend on //chrome), so | 3 # under //components/webdata, that does not depend on //chrome), so |
| 4 # we have these basic rules followed by temporary exceptions. | 4 # we have these basic rules followed by temporary exceptions. |
| 5 # Please don't add to the list of exceptions! | 5 # Please don't add to the list of exceptions! |
| 6 "-chrome/browser", | 6 "-chrome/browser", |
| 7 "-chrome/common", | 7 "-chrome/common", |
| 8 "+chrome/browser/webdata", | 8 "+chrome/browser/webdata", |
| 9 "+components/encryptor", | 9 "+components/encryptor", |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "!chrome/browser/history/history_database.h", | 39 "!chrome/browser/history/history_database.h", |
| 40 "!chrome/browser/search_engines/search_terms_data.h", | 40 "!chrome/browser/search_engines/search_terms_data.h", |
| 41 "!chrome/browser/search_engines/template_url.h", | 41 "!chrome/browser/search_engines/template_url.h", |
| 42 "!chrome/browser/search_engines/template_url_id.h", | 42 "!chrome/browser/search_engines/template_url_id.h", |
| 43 "!chrome/browser/search_engines/template_url_service.h", | 43 "!chrome/browser/search_engines/template_url_service.h", |
| 44 ], | 44 ], |
| 45 | 45 |
| 46 # TODO(caitkp): Extract unit tests from //chrome, at lower priority | 46 # TODO(caitkp): Extract unit tests from //chrome, at lower priority |
| 47 # than production code. | 47 # than production code. |
| 48 r"(.*_unittest|.*_test_util)\.(cc|h)": [ | 48 r"(.*_unittest|.*_test_util)\.(cc|h)": [ |
| 49 "+chrome/browser/webdata/token_web_data.h", |
| 49 "+chrome/browser/webdata/web_data_service.h", | 50 "+chrome/browser/webdata/web_data_service.h", |
| 50 "+chrome/browser/webdata/web_data_service_factory.h", | 51 "+chrome/browser/webdata/web_data_service_factory.h", |
| 51 ], | 52 ], |
| 52 } | 53 } |
| OLD | NEW |