| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "//ios/chrome/browser/sessions", | 83 "//ios/chrome/browser/sessions", |
| 84 "//ios/chrome/browser/ui", | 84 "//ios/chrome/browser/ui", |
| 85 "//ios/chrome/browser/ui/commands", | 85 "//ios/chrome/browser/ui/commands", |
| 86 "//ios/chrome/browser/ui/fancy_ui", | 86 "//ios/chrome/browser/ui/fancy_ui", |
| 87 "//ios/chrome/browser/ui/popup_menu", | 87 "//ios/chrome/browser/ui/popup_menu", |
| 88 "//ios/chrome/common", | 88 "//ios/chrome/common", |
| 89 "//ios/public/provider/chrome/browser", | 89 "//ios/public/provider/chrome/browser", |
| 90 "//ios/third_party/material_components_ios", | 90 "//ios/third_party/material_components_ios", |
| 91 "//ios/third_party/material_roboto_font_loader_ios", | 91 "//ios/third_party/material_roboto_font_loader_ios", |
| 92 "//ios/web", | 92 "//ios/web", |
| 93 "//ios/web/public/image_fetcher", | |
| 94 "//net", | 93 "//net", |
| 95 "//skia", | 94 "//skia", |
| 96 "//third_party/google_toolbox_for_mac", | 95 "//third_party/google_toolbox_for_mac", |
| 97 "//ui/base", | 96 "//ui/base", |
| 98 "//ui/gfx", | 97 "//ui/gfx", |
| 99 "//ui/gfx/geometry", | 98 "//ui/gfx/geometry", |
| 100 "//url", | 99 "//url", |
| 101 ] | 100 ] |
| 102 public_deps = [ | 101 public_deps = [ |
| 103 "//components/omnibox/browser", | 102 "//components/omnibox/browser", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 131 visibility = [ ":unit_tests" ] | 130 visibility = [ ":unit_tests" ] |
| 132 testonly = true | 131 testonly = true |
| 133 sources = [ | 132 sources = [ |
| 134 "//ios/chrome/test/data/omnibox/selected_ranges.txt", | 133 "//ios/chrome/test/data/omnibox/selected_ranges.txt", |
| 135 ] | 134 ] |
| 136 outputs = [ | 135 outputs = [ |
| 137 "{{bundle_resources_dir}}/" + | 136 "{{bundle_resources_dir}}/" + |
| 138 "ios/chrome/test/data/omnibox/{{source_file_part}}", | 137 "ios/chrome/test/data/omnibox/{{source_file_part}}", |
| 139 ] | 138 ] |
| 140 } | 139 } |
| OLD | NEW |