| 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 "chrome_browser_state_manager.h", |
| 12 ] | 12 ] |
| 13 deps = [ | 13 deps = [ |
| 14 "//base", | 14 "//base", |
| 15 "//components/prefs", | 15 "//components/prefs", |
| 16 "//components/sync_preferences", | 16 "//components/sync_preferences", |
| 17 "//ios/chrome/browser/net:net_types", |
| 17 "//ios/chrome/browser/tabs", | 18 "//ios/chrome/browser/tabs", |
| 18 "//ios/web", | 19 "//ios/web", |
| 19 "//net", | 20 "//net", |
| 20 ] | 21 ] |
| 21 | 22 |
| 22 configs += [ "//build/config/compiler:enable_arc" ] | 23 configs += [ "//build/config/compiler:enable_arc" ] |
| 23 } | 24 } |
| 24 | 25 |
| 25 source_set("browser_state_impl") { | 26 source_set("browser_state_impl") { |
| 26 sources = [ | 27 sources = [ |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 "//ios/chrome/browser/sync/glue", | 155 "//ios/chrome/browser/sync/glue", |
| 155 "//ios/chrome/test:test_support", | 156 "//ios/chrome/test:test_support", |
| 156 "//ios/public/provider/chrome/browser", | 157 "//ios/public/provider/chrome/browser", |
| 157 "//ios/public/provider/chrome/browser/ui", | 158 "//ios/public/provider/chrome/browser/ui", |
| 158 "//ios/web", | 159 "//ios/web", |
| 159 "//net:test_support", | 160 "//net:test_support", |
| 160 ] | 161 ] |
| 161 | 162 |
| 162 configs += [ "//build/config/compiler:enable_arc" ] | 163 configs += [ "//build/config/compiler:enable_arc" ] |
| 163 } | 164 } |
| OLD | NEW |