| 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("omnibox") { | 5 source_set("omnibox") { |
| 6 sources = [ | 6 sources = [ |
| 7 "omnibox_util.cc", | 7 "omnibox_util.cc", |
| 8 "omnibox_util.h", | 8 "omnibox_util.h", |
| 9 "web_omnibox_edit_controller.cc", | 9 "web_omnibox_edit_controller.cc", |
| 10 "web_omnibox_edit_controller.h", | 10 "web_omnibox_edit_controller.h", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 deps = [ | 60 deps = [ |
| 61 ":omnibox", | 61 ":omnibox", |
| 62 ":resources", | 62 ":resources", |
| 63 "//base", | 63 "//base", |
| 64 "//base:i18n", | 64 "//base:i18n", |
| 65 "//components/favicon/ios", | 65 "//components/favicon/ios", |
| 66 "//components/keyed_service/core", | 66 "//components/keyed_service/core", |
| 67 "//components/open_from_clipboard", | 67 "//components/open_from_clipboard", |
| 68 "//components/resources", | 68 "//components/resources", |
| 69 "//components/search_engines", | 69 "//components/search_engines", |
| 70 "//components/security_state/core", |
| 70 "//components/ssl_errors", | 71 "//components/ssl_errors", |
| 71 "//components/strings", | 72 "//components/strings", |
| 72 "//components/toolbar", | 73 "//components/toolbar", |
| 73 "//ios/chrome/app/strings", | 74 "//ios/chrome/app/strings", |
| 74 "//ios/chrome/app/theme", | 75 "//ios/chrome/app/theme", |
| 75 "//ios/chrome/browser", | 76 "//ios/chrome/browser", |
| 76 "//ios/chrome/browser/autocomplete", | 77 "//ios/chrome/browser/autocomplete", |
| 77 "//ios/chrome/browser/bookmarks", | 78 "//ios/chrome/browser/bookmarks", |
| 78 "//ios/chrome/browser/bookmarks:bookmarks_utils", | 79 "//ios/chrome/browser/bookmarks:bookmarks_utils", |
| 79 "//ios/chrome/browser/browser_state", | 80 "//ios/chrome/browser/browser_state", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 visibility = [ ":unit_tests" ] | 131 visibility = [ ":unit_tests" ] |
| 131 testonly = true | 132 testonly = true |
| 132 sources = [ | 133 sources = [ |
| 133 "//ios/chrome/test/data/omnibox/selected_ranges.txt", | 134 "//ios/chrome/test/data/omnibox/selected_ranges.txt", |
| 134 ] | 135 ] |
| 135 outputs = [ | 136 outputs = [ |
| 136 "{{bundle_resources_dir}}/" + | 137 "{{bundle_resources_dir}}/" + |
| 137 "ios/chrome/test/data/omnibox/{{source_file_part}}", | 138 "ios/chrome/test/data/omnibox/{{source_file_part}}", |
| 138 ] | 139 ] |
| 139 } | 140 } |
| OLD | NEW |