| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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_state") { | 5 source_set("browser_state") { |
| 6 sources = [ | 6 sources = [ |
| 7 "browser_state_otr_helper.cc", | 7 "browser_state_otr_helper.cc", |
| 8 "browser_state_otr_helper.h", | 8 "browser_state_otr_helper.h", |
| 9 "chrome_browser_state.h", | 9 "chrome_browser_state.h", |
| 10 "chrome_browser_state.mm", | 10 "chrome_browser_state.mm", |
| 11 ] | 11 ] |
| 12 deps = [ | 12 deps = [ |
| 13 "//base", | 13 "//base", |
| 14 "//components/prefs", | 14 "//components/prefs", |
| 15 "//components/sync_preferences", | 15 "//components/sync_preferences", |
| 16 "//ios/web", | 16 "//ios/web", |
| 17 "//net", | 17 "//net", |
| 18 ] | 18 ] |
| 19 |
| 20 configs += [ "//build/config/compiler:enable_arc" ] |
| 19 } | 21 } |
| 20 | 22 |
| 21 source_set("browser_state_impl") { | 23 source_set("browser_state_impl") { |
| 22 sources = [ | 24 sources = [ |
| 23 "bookmark_model_loaded_observer.cc", | 25 "bookmark_model_loaded_observer.cc", |
| 24 "bookmark_model_loaded_observer.h", | 26 "bookmark_model_loaded_observer.h", |
| 25 "browser_state_info_cache.cc", | 27 "browser_state_info_cache.cc", |
| 26 "browser_state_info_cache.h", | 28 "browser_state_info_cache.h", |
| 27 "browser_state_info_cache_observer.h", | 29 "browser_state_info_cache_observer.h", |
| 28 "browser_state_keyed_service_factories.h", | 30 "browser_state_keyed_service_factories.h", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 "//ios/chrome/browser/history", | 142 "//ios/chrome/browser/history", |
| 141 "//ios/chrome/browser/net", | 143 "//ios/chrome/browser/net", |
| 142 "//ios/chrome/browser/prefs", | 144 "//ios/chrome/browser/prefs", |
| 143 "//ios/chrome/browser/sync/glue", | 145 "//ios/chrome/browser/sync/glue", |
| 144 "//ios/chrome/test:test_support", | 146 "//ios/chrome/test:test_support", |
| 145 "//ios/public/provider/chrome/browser", | 147 "//ios/public/provider/chrome/browser", |
| 146 "//ios/web", | 148 "//ios/web", |
| 147 "//net:test_support", | 149 "//net:test_support", |
| 148 ] | 150 ] |
| 149 } | 151 } |
| OLD | NEW |