| OLD | NEW | 
|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be | 
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. | 
| 4 | 4 | 
| 5 source_set("browser") { | 5 source_set("browser") { | 
| 6   sources = [ | 6   sources = [ | 
| 7     "browser_state/chrome_browser_state.cc", | 7     "browser_state/chrome_browser_state.cc", | 
| 8     "browser_state/chrome_browser_state.h", | 8     "browser_state/chrome_browser_state.h", | 
| 9     "browser_state/chrome_browser_state_manager.h", | 9     "browser_state/chrome_browser_state_manager.h", | 
| 10     "chrome_browser_provider.cc", | 10     "chrome_browser_provider.cc", | 
| (...skipping 14 matching lines...) Expand all  Loading... | 
| 25     "updatable_resource_provider.mm", | 25     "updatable_resource_provider.mm", | 
| 26   ] | 26   ] | 
| 27 | 27 | 
| 28   deps = [ | 28   deps = [ | 
| 29     "//base", | 29     "//base", | 
| 30     "//components/autofill/core/browser", | 30     "//components/autofill/core/browser", | 
| 31     "//ios/public/provider/web", | 31     "//ios/public/provider/web", | 
| 32     "//ios/web", | 32     "//ios/web", | 
| 33   ] | 33   ] | 
| 34 } | 34 } | 
|  | 35 | 
|  | 36 source_set("test_support") { | 
|  | 37   testonly = true | 
|  | 38 | 
|  | 39   sources = [ | 
|  | 40     "test_chrome_browser_provider.h", | 
|  | 41     "test_chrome_browser_provider.mm", | 
|  | 42     "test_chrome_provider_initializer.cc", | 
|  | 43     "test_chrome_provider_initializer.h", | 
|  | 44     "test_updatable_resource_provider.h", | 
|  | 45     "test_updatable_resource_provider.mm", | 
|  | 46   ] | 
|  | 47 | 
|  | 48   deps = [ | 
|  | 49     ":browser", | 
|  | 50     "//base", | 
|  | 51     "//components/signin/ios/browser:test_support", | 
|  | 52     "//testing/gtest", | 
|  | 53   ] | 
|  | 54 } | 
| OLD | NEW | 
|---|