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