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 "chrome_browser_state_manager.h", | |
12 ] | 11 ] |
13 deps = [ | 12 deps = [ |
14 "//base", | 13 "//base", |
15 "//components/prefs", | 14 "//components/prefs", |
16 "//components/sync_preferences", | 15 "//components/sync_preferences", |
17 "//ios/chrome/browser/tabs", | |
18 "//ios/web", | 16 "//ios/web", |
19 "//net", | 17 "//net", |
20 ] | 18 ] |
21 | 19 |
22 configs += [ "//build/config/compiler:enable_arc" ] | 20 configs += [ "//build/config/compiler:enable_arc" ] |
23 } | 21 } |
24 | 22 |
25 source_set("browser_state_impl") { | 23 source_set("browser_state_impl") { |
26 sources = [ | 24 sources = [ |
27 "bookmark_model_loaded_observer.cc", | 25 "bookmark_model_loaded_observer.cc", |
28 "bookmark_model_loaded_observer.h", | 26 "bookmark_model_loaded_observer.h", |
29 "browser_state_info_cache.cc", | 27 "browser_state_info_cache.cc", |
30 "browser_state_info_cache.h", | 28 "browser_state_info_cache.h", |
31 "browser_state_info_cache_observer.h", | 29 "browser_state_info_cache_observer.h", |
32 "browser_state_keyed_service_factories.h", | 30 "browser_state_keyed_service_factories.h", |
33 "browser_state_keyed_service_factories.mm", | 31 "browser_state_keyed_service_factories.mm", |
34 "chrome_browser_state_impl.cc", | 32 "chrome_browser_state_impl.cc", |
35 "chrome_browser_state_impl.h", | 33 "chrome_browser_state_impl.h", |
36 "chrome_browser_state_impl_io_data.h", | 34 "chrome_browser_state_impl_io_data.h", |
37 "chrome_browser_state_impl_io_data.mm", | 35 "chrome_browser_state_impl_io_data.mm", |
38 "chrome_browser_state_io_data.cc", | 36 "chrome_browser_state_io_data.cc", |
39 "chrome_browser_state_io_data.h", | 37 "chrome_browser_state_io_data.h", |
| 38 "chrome_browser_state_manager.h", |
40 "chrome_browser_state_manager_impl.cc", | 39 "chrome_browser_state_manager_impl.cc", |
41 "chrome_browser_state_manager_impl.h", | 40 "chrome_browser_state_manager_impl.h", |
42 "chrome_browser_state_removal_controller.h", | 41 "chrome_browser_state_removal_controller.h", |
43 "chrome_browser_state_removal_controller.mm", | 42 "chrome_browser_state_removal_controller.mm", |
44 "off_the_record_chrome_browser_state_impl.cc", | 43 "off_the_record_chrome_browser_state_impl.cc", |
45 "off_the_record_chrome_browser_state_impl.h", | 44 "off_the_record_chrome_browser_state_impl.h", |
46 "off_the_record_chrome_browser_state_io_data.h", | 45 "off_the_record_chrome_browser_state_io_data.h", |
47 "off_the_record_chrome_browser_state_io_data.mm", | 46 "off_the_record_chrome_browser_state_io_data.mm", |
48 ] | 47 ] |
49 | 48 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 "//ios/chrome/browser/sync/glue", | 152 "//ios/chrome/browser/sync/glue", |
154 "//ios/chrome/test:test_support", | 153 "//ios/chrome/test:test_support", |
155 "//ios/public/provider/chrome/browser", | 154 "//ios/public/provider/chrome/browser", |
156 "//ios/public/provider/chrome/browser/ui", | 155 "//ios/public/provider/chrome/browser/ui", |
157 "//ios/web", | 156 "//ios/web", |
158 "//net:test_support", | 157 "//net:test_support", |
159 ] | 158 ] |
160 | 159 |
161 configs += [ "//build/config/compiler:enable_arc" ] | 160 configs += [ "//build/config/compiler:enable_arc" ] |
162 } | 161 } |
OLD | NEW |