| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "//components/sync", | 72 "//components/sync", |
| 73 "//components/sync_preferences", | 73 "//components/sync_preferences", |
| 74 "//components/user_prefs", | 74 "//components/user_prefs", |
| 75 "//google_apis", | 75 "//google_apis", |
| 76 "//ios/chrome/browser", | 76 "//ios/chrome/browser", |
| 77 "//ios/chrome/browser/autocomplete", | 77 "//ios/chrome/browser/autocomplete", |
| 78 "//ios/chrome/browser/autofill", | 78 "//ios/chrome/browser/autofill", |
| 79 "//ios/chrome/browser/bookmarks", | 79 "//ios/chrome/browser/bookmarks", |
| 80 "//ios/chrome/browser/browser_state_metrics", | 80 "//ios/chrome/browser/browser_state_metrics", |
| 81 "//ios/chrome/browser/content_settings", | 81 "//ios/chrome/browser/content_settings", |
| 82 "//ios/chrome/browser/desktop_promotion", |
| 82 "//ios/chrome/browser/dom_distiller", | 83 "//ios/chrome/browser/dom_distiller", |
| 83 "//ios/chrome/browser/favicon", | 84 "//ios/chrome/browser/favicon", |
| 84 "//ios/chrome/browser/google", | 85 "//ios/chrome/browser/google", |
| 85 "//ios/chrome/browser/google:google_logo", | 86 "//ios/chrome/browser/google:google_logo", |
| 86 "//ios/chrome/browser/history", | 87 "//ios/chrome/browser/history", |
| 87 "//ios/chrome/browser/invalidation", | 88 "//ios/chrome/browser/invalidation", |
| 88 "//ios/chrome/browser/net", | 89 "//ios/chrome/browser/net", |
| 89 "//ios/chrome/browser/ntp_snippets", | 90 "//ios/chrome/browser/ntp_snippets", |
| 90 "//ios/chrome/browser/passwords", | 91 "//ios/chrome/browser/passwords", |
| 91 "//ios/chrome/browser/prefs", | 92 "//ios/chrome/browser/prefs", |
| (...skipping 60 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 |