| 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("tabs") { | 5 source_set("tabs") { |
| 6 sources = [ | 6 sources = [ |
| 7 "legacy_tab_helper.h", | 7 "legacy_tab_helper.h", |
| 8 "tab.h", | 8 "tab.h", |
| 9 "tab_delegate.h", | 9 "tab_delegate.h", |
| 10 "tab_dialog_delegate.h", | 10 "tab_dialog_delegate.h", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "//ios/chrome/browser/passwords", | 76 "//ios/chrome/browser/passwords", |
| 77 "//ios/chrome/browser/passwords:passwords_internal", | 77 "//ios/chrome/browser/passwords:passwords_internal", |
| 78 "//ios/chrome/browser/reading_list", | 78 "//ios/chrome/browser/reading_list", |
| 79 "//ios/chrome/browser/search_engines", | 79 "//ios/chrome/browser/search_engines", |
| 80 "//ios/chrome/browser/sessions", | 80 "//ios/chrome/browser/sessions", |
| 81 "//ios/chrome/browser/signin", | 81 "//ios/chrome/browser/signin", |
| 82 "//ios/chrome/browser/signin:signin_internal", | 82 "//ios/chrome/browser/signin:signin_internal", |
| 83 "//ios/chrome/browser/snapshots", | 83 "//ios/chrome/browser/snapshots", |
| 84 "//ios/chrome/browser/snapshots:snapshots_internal", | 84 "//ios/chrome/browser/snapshots:snapshots_internal", |
| 85 "//ios/chrome/browser/ssl", | 85 "//ios/chrome/browser/ssl", |
| 86 "//ios/chrome/browser/store_kit", |
| 86 "//ios/chrome/browser/sync", | 87 "//ios/chrome/browser/sync", |
| 87 "//ios/chrome/browser/translate", | 88 "//ios/chrome/browser/translate", |
| 88 "//ios/chrome/browser/u2f", | 89 "//ios/chrome/browser/u2f", |
| 89 "//ios/chrome/browser/ui", | 90 "//ios/chrome/browser/ui", |
| 90 "//ios/chrome/browser/ui:ui_internal", | 91 "//ios/chrome/browser/ui:ui_internal", |
| 91 "//ios/chrome/browser/ui/alert_coordinator", | 92 "//ios/chrome/browser/ui/alert_coordinator", |
| 92 "//ios/chrome/browser/ui/commands", | 93 "//ios/chrome/browser/ui/commands", |
| 93 "//ios/chrome/browser/ui/downloads", | 94 "//ios/chrome/browser/ui/downloads", |
| 94 "//ios/chrome/browser/ui/overscroll_actions", | 95 "//ios/chrome/browser/ui/overscroll_actions", |
| 95 "//ios/chrome/browser/ui/reader_mode", | 96 "//ios/chrome/browser/ui/reader_mode", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 ":tabs", | 185 ":tabs", |
| 185 ":tabs_internal", | 186 ":tabs_internal", |
| 186 "//base", | 187 "//base", |
| 187 "//ios/chrome/browser/browser_state:test_support", | 188 "//ios/chrome/browser/browser_state:test_support", |
| 188 "//ios/chrome/browser/sessions:test_support", | 189 "//ios/chrome/browser/sessions:test_support", |
| 189 "//ios/web:test_support", | 190 "//ios/web:test_support", |
| 190 "//testing/gtest", | 191 "//testing/gtest", |
| 191 ] | 192 ] |
| 192 configs += [ "//build/config/compiler:enable_arc" ] | 193 configs += [ "//build/config/compiler:enable_arc" ] |
| 193 } | 194 } |
| OLD | NEW |