OLD | NEW |
1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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("omnibox") { | 5 source_set("omnibox") { |
6 sources = [ | 6 sources = [ |
7 "location_bar_coordinator.h", | 7 "location_bar_coordinator.h", |
8 "location_bar_coordinator.mm", | 8 "location_bar_coordinator.mm", |
9 "location_bar_mediator.h", | 9 "location_bar_mediator.h", |
10 "location_bar_mediator.mm", | 10 "location_bar_mediator.mm", |
11 ] | 11 ] |
12 deps = [ | 12 deps = [ |
13 ":omnibox_ui", | 13 ":omnibox_ui", |
14 "//base", | 14 "//base", |
15 "//components/toolbar", | 15 "//components/toolbar", |
16 "//ios/chrome/browser/ssl", | 16 "//ios/chrome/browser/ssl", |
17 "//ios/chrome/browser/ui/omnibox:omnibox_internal", | 17 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
18 "//ios/chrome/browser/ui/toolbar", | 18 "//ios/chrome/browser/ui/toolbar", |
19 "//ios/chrome/browser/web_state_list", | |
20 "//ios/clean/chrome/browser", | 19 "//ios/clean/chrome/browser", |
| 20 "//ios/shared/chrome/browser/tabs", |
21 "//ios/shared/chrome/browser/ui/browser_list", | 21 "//ios/shared/chrome/browser/ui/browser_list", |
22 "//ios/shared/chrome/browser/ui/coordinators", | 22 "//ios/shared/chrome/browser/ui/coordinators", |
23 "//ios/shared/chrome/browser/ui/omnibox", | 23 "//ios/shared/chrome/browser/ui/omnibox", |
24 "//ios/web", | 24 "//ios/web", |
25 ] | 25 ] |
26 configs += [ "//build/config/compiler:enable_arc" ] | 26 configs += [ "//build/config/compiler:enable_arc" ] |
27 } | 27 } |
28 | 28 |
29 source_set("omnibox_ui") { | 29 source_set("omnibox_ui") { |
30 sources = [ | 30 sources = [ |
(...skipping 12 matching lines...) Expand all Loading... |
43 "location_bar_coordinator_unittest.mm", | 43 "location_bar_coordinator_unittest.mm", |
44 "location_bar_mediator_unittest.mm", | 44 "location_bar_mediator_unittest.mm", |
45 ] | 45 ] |
46 | 46 |
47 deps = [ | 47 deps = [ |
48 ":omnibox", | 48 ":omnibox", |
49 "//testing/gtest", | 49 "//testing/gtest", |
50 ] | 50 ] |
51 configs += [ "//build/config/compiler:enable_arc" ] | 51 configs += [ "//build/config/compiler:enable_arc" ] |
52 } | 52 } |
OLD | NEW |