| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "preload_provider.h", | 56 "preload_provider.h", |
| 57 "truncating_attributed_label.h", | 57 "truncating_attributed_label.h", |
| 58 "truncating_attributed_label.mm", | 58 "truncating_attributed_label.mm", |
| 59 ] | 59 ] |
| 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/image_fetcher/ios", |
| 66 "//components/keyed_service/core", | 67 "//components/keyed_service/core", |
| 67 "//components/open_from_clipboard", | 68 "//components/open_from_clipboard", |
| 68 "//components/resources", | 69 "//components/resources", |
| 69 "//components/search_engines", | 70 "//components/search_engines", |
| 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", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 visibility = [ ":unit_tests" ] | 130 visibility = [ ":unit_tests" ] |
| 130 testonly = true | 131 testonly = true |
| 131 sources = [ | 132 sources = [ |
| 132 "//ios/chrome/test/data/omnibox/selected_ranges.txt", | 133 "//ios/chrome/test/data/omnibox/selected_ranges.txt", |
| 133 ] | 134 ] |
| 134 outputs = [ | 135 outputs = [ |
| 135 "{{bundle_resources_dir}}/" + | 136 "{{bundle_resources_dir}}/" + |
| 136 "ios/chrome/test/data/omnibox/{{source_file_part}}", | 137 "ios/chrome/test/data/omnibox/{{source_file_part}}", |
| 137 ] | 138 ] |
| 138 } | 139 } |
| OLD | NEW |