| 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", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "chrome_browser_state_manager.h", | 38 "chrome_browser_state_manager.h", |
| 39 "chrome_browser_state_manager_impl.cc", | 39 "chrome_browser_state_manager_impl.cc", |
| 40 "chrome_browser_state_manager_impl.h", | 40 "chrome_browser_state_manager_impl.h", |
| 41 "chrome_browser_state_removal_controller.h", | 41 "chrome_browser_state_removal_controller.h", |
| 42 "chrome_browser_state_removal_controller.mm", | 42 "chrome_browser_state_removal_controller.mm", |
| 43 "off_the_record_chrome_browser_state_impl.cc", | 43 "off_the_record_chrome_browser_state_impl.cc", |
| 44 "off_the_record_chrome_browser_state_impl.h", | 44 "off_the_record_chrome_browser_state_impl.h", |
| 45 "off_the_record_chrome_browser_state_io_data.h", | 45 "off_the_record_chrome_browser_state_io_data.h", |
| 46 "off_the_record_chrome_browser_state_io_data.mm", | 46 "off_the_record_chrome_browser_state_io_data.mm", |
| 47 ] | 47 ] |
| 48 |
| 49 configs += [ "//build/config/compiler:enable_arc" ] |
| 50 |
| 48 deps = [ | 51 deps = [ |
| 49 ":browser_state", | 52 ":browser_state", |
| 50 "//base", | 53 "//base", |
| 51 "//base:i18n", | 54 "//base:i18n", |
| 52 "//components/about_handler", | 55 "//components/about_handler", |
| 53 "//components/bookmarks/browser", | 56 "//components/bookmarks/browser", |
| 54 "//components/browser_sync", | 57 "//components/browser_sync", |
| 55 "//components/content_settings/core/browser", | 58 "//components/content_settings/core/browser", |
| 56 "//components/content_settings/core/common", | 59 "//components/content_settings/core/common", |
| 57 "//components/cookie_config", | 60 "//components/cookie_config", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "//ios/chrome/browser/history", | 145 "//ios/chrome/browser/history", |
| 143 "//ios/chrome/browser/net", | 146 "//ios/chrome/browser/net", |
| 144 "//ios/chrome/browser/prefs", | 147 "//ios/chrome/browser/prefs", |
| 145 "//ios/chrome/browser/sync/glue", | 148 "//ios/chrome/browser/sync/glue", |
| 146 "//ios/chrome/test:test_support", | 149 "//ios/chrome/test:test_support", |
| 147 "//ios/public/provider/chrome/browser", | 150 "//ios/public/provider/chrome/browser", |
| 148 "//ios/web", | 151 "//ios/web", |
| 149 "//net:test_support", | 152 "//net:test_support", |
| 150 ] | 153 ] |
| 151 } | 154 } |
| OLD | NEW |