| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "//ios/chrome/browser/sessions", | 99 "//ios/chrome/browser/sessions", |
| 100 "//ios/chrome/browser/signin", | 100 "//ios/chrome/browser/signin", |
| 101 "//ios/chrome/browser/suggestions", | 101 "//ios/chrome/browser/suggestions", |
| 102 "//ios/chrome/browser/sync", | 102 "//ios/chrome/browser/sync", |
| 103 "//ios/chrome/browser/sync/glue", | 103 "//ios/chrome/browser/sync/glue", |
| 104 "//ios/chrome/browser/translate", | 104 "//ios/chrome/browser/translate", |
| 105 "//ios/chrome/browser/undo", | 105 "//ios/chrome/browser/undo", |
| 106 "//ios/net", | 106 "//ios/net", |
| 107 "//ios/public/provider/chrome/browser", | 107 "//ios/public/provider/chrome/browser", |
| 108 "//ios/public/provider/chrome/browser/signin", | 108 "//ios/public/provider/chrome/browser/signin", |
| 109 "//ios/shared/chrome/browser/ui/browser_list", |
| 109 "//ios/web", | 110 "//ios/web", |
| 110 "//net", | 111 "//net", |
| 111 "//net:extras", | 112 "//net:extras", |
| 112 ] | 113 ] |
| 113 allow_circular_includes_from = [ | 114 allow_circular_includes_from = [ |
| 114 "//ios/chrome/browser", | 115 "//ios/chrome/browser", |
| 115 "//ios/chrome/browser/browser_state_metrics", | 116 "//ios/chrome/browser/browser_state_metrics", |
| 116 "//ios/chrome/browser/net", | 117 "//ios/chrome/browser/net", |
| 117 "//ios/chrome/browser/prefs:browser_prefs", | 118 "//ios/chrome/browser/prefs:browser_prefs", |
| 118 "//ios/chrome/browser/signin", | 119 "//ios/chrome/browser/signin", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 "//ios/chrome/browser/sync/glue", | 156 "//ios/chrome/browser/sync/glue", |
| 156 "//ios/chrome/test:test_support", | 157 "//ios/chrome/test:test_support", |
| 157 "//ios/public/provider/chrome/browser", | 158 "//ios/public/provider/chrome/browser", |
| 158 "//ios/public/provider/chrome/browser/ui", | 159 "//ios/public/provider/chrome/browser/ui", |
| 159 "//ios/web", | 160 "//ios/web", |
| 160 "//net:test_support", | 161 "//net:test_support", |
| 161 ] | 162 ] |
| 162 | 163 |
| 163 configs += [ "//build/config/compiler:enable_arc" ] | 164 configs += [ "//build/config/compiler:enable_arc" ] |
| 164 } | 165 } |
| OLD | NEW |