| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "page_info_model.cc", | 51 "page_info_model.cc", |
| 52 "page_info_model.h", | 52 "page_info_model.h", |
| 53 "page_info_model_observer.h", | 53 "page_info_model_observer.h", |
| 54 "page_info_view_controller.h", | 54 "page_info_view_controller.h", |
| 55 "page_info_view_controller.mm", | 55 "page_info_view_controller.mm", |
| 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", |
| 62 ":resources", |
| 61 "//base", | 63 "//base", |
| 62 "//base:i18n", | 64 "//base:i18n", |
| 63 "//components/favicon/ios", | 65 "//components/favicon/ios", |
| 64 "//components/keyed_service/core", | 66 "//components/keyed_service/core", |
| 65 "//components/open_from_clipboard", | 67 "//components/open_from_clipboard", |
| 66 "//components/resources", | 68 "//components/resources", |
| 67 "//components/search_engines", | 69 "//components/search_engines", |
| 68 "//components/ssl_errors", | 70 "//components/ssl_errors", |
| 69 "//components/strings", | 71 "//components/strings", |
| 70 "//components/toolbar", | 72 "//components/toolbar", |
| 71 "//ios/chrome/app/strings", | 73 "//ios/chrome/app/strings", |
| 72 "//ios/chrome/app/theme", | 74 "//ios/chrome/app/theme", |
| 73 "//ios/chrome/browser", | 75 "//ios/chrome/browser", |
| 74 "//ios/chrome/browser/autocomplete", | 76 "//ios/chrome/browser/autocomplete", |
| 75 "//ios/chrome/browser/bookmarks", | 77 "//ios/chrome/browser/bookmarks", |
| 76 "//ios/chrome/browser/bookmarks:bookmarks_utils", | 78 "//ios/chrome/browser/bookmarks:bookmarks_utils", |
| 77 "//ios/chrome/browser/browser_state", | 79 "//ios/chrome/browser/browser_state", |
| 78 "//ios/chrome/browser/net", | 80 "//ios/chrome/browser/net", |
| 79 "//ios/chrome/browser/search_engines", | 81 "//ios/chrome/browser/search_engines", |
| 80 "//ios/chrome/browser/sessions", | 82 "//ios/chrome/browser/sessions", |
| 81 "//ios/chrome/browser/ui", | 83 "//ios/chrome/browser/ui", |
| 82 "//ios/chrome/browser/ui/commands", | 84 "//ios/chrome/browser/ui/commands", |
| 83 "//ios/chrome/browser/ui/fancy_ui", | 85 "//ios/chrome/browser/ui/fancy_ui", |
| 84 "//ios/chrome/browser/ui/omnibox", | |
| 85 "//ios/chrome/browser/ui/omnibox:resources", | |
| 86 "//ios/chrome/browser/ui/popup_menu", | 86 "//ios/chrome/browser/ui/popup_menu", |
| 87 "//ios/chrome/common", | 87 "//ios/chrome/common", |
| 88 "//ios/public/provider/chrome/browser", | 88 "//ios/public/provider/chrome/browser", |
| 89 "//ios/third_party/material_components_ios", | 89 "//ios/third_party/material_components_ios", |
| 90 "//ios/third_party/material_roboto_font_loader_ios", | 90 "//ios/third_party/material_roboto_font_loader_ios", |
| 91 "//ios/web", | 91 "//ios/web", |
| 92 "//ios/web/public/image_fetcher", | 92 "//ios/web/public/image_fetcher", |
| 93 "//net", | 93 "//net", |
| 94 "//skia", | 94 "//skia", |
| 95 "//third_party/google_toolbox_for_mac", | 95 "//third_party/google_toolbox_for_mac", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 visibility = [ ":unit_tests" ] | 129 visibility = [ ":unit_tests" ] |
| 130 testonly = true | 130 testonly = true |
| 131 sources = [ | 131 sources = [ |
| 132 "//ios/chrome/test/data/omnibox/selected_ranges.txt", | 132 "//ios/chrome/test/data/omnibox/selected_ranges.txt", |
| 133 ] | 133 ] |
| 134 outputs = [ | 134 outputs = [ |
| 135 "{{bundle_resources_dir}}/" + | 135 "{{bundle_resources_dir}}/" + |
| 136 "ios/chrome/test/data/omnibox/{{source_file_part}}", | 136 "ios/chrome/test/data/omnibox/{{source_file_part}}", |
| 137 ] | 137 ] |
| 138 } | 138 } |
| OLD | NEW |