| 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("webui") { | 5 source_set("webui") { |
| 6 sources = [ | 6 sources = [ |
| 7 "about_ui.cc", | 7 "about_ui.cc", |
| 8 "about_ui.h", | 8 "about_ui.h", |
| 9 "crashes_ui.cc", | 9 "crashes_ui.cc", |
| 10 "crashes_ui.h", | 10 "crashes_ui.h", |
| 11 "flags_ui.cc", | 11 "flags_ui.cc", |
| 12 "flags_ui.h", | 12 "flags_ui.h", |
| 13 "mojo_web_ui_ios_controller.h", | 13 "mojo_web_ui_ios_controller.h", |
| 14 "physical_web_ui.cc", | 14 "physical_web_ui.cc", |
| 15 "physical_web_ui.h", | 15 "physical_web_ui.h", |
| 16 "popular_sites_internals_ui.cc", |
| 17 "popular_sites_internals_ui.h", |
| 16 "version_handler.cc", | 18 "version_handler.cc", |
| 17 "version_handler.h", | 19 "version_handler.h", |
| 18 "version_ui.h", | 20 "version_ui.h", |
| 19 "version_ui.mm", | 21 "version_ui.mm", |
| 20 ] | 22 ] |
| 21 | 23 |
| 22 deps = [ | 24 deps = [ |
| 23 "//base", | 25 "//base", |
| 24 "//base:i18n", | 26 "//base:i18n", |
| 25 "//components/crash/core/browser", | 27 "//components/crash/core/browser", |
| 26 "//components/flags_ui", | 28 "//components/flags_ui", |
| 29 "//components/ntp_tiles", |
| 27 "//components/physical_web/data_source", | 30 "//components/physical_web/data_source", |
| 28 "//components/physical_web/webui", | 31 "//components/physical_web/webui", |
| 29 "//components/prefs", | 32 "//components/prefs", |
| 30 "//components/resources", | 33 "//components/resources", |
| 31 "//components/strings", | 34 "//components/strings", |
| 32 "//components/version_info", | 35 "//components/version_info", |
| 33 "//components/version_ui", | 36 "//components/version_ui", |
| 34 "//google_apis", | 37 "//google_apis", |
| 35 "//ios/chrome/app/strings", | 38 "//ios/chrome/app/strings", |
| 36 "//ios/chrome/browser", | 39 "//ios/chrome/browser", |
| 37 "//ios/chrome/browser:about_flags", | 40 "//ios/chrome/browser:about_flags", |
| 38 "//ios/chrome/browser/browser_state", | 41 "//ios/chrome/browser/browser_state", |
| 39 "//ios/chrome/browser/crash_report", | 42 "//ios/chrome/browser/crash_report", |
| 40 "//ios/chrome/browser/metrics", | 43 "//ios/chrome/browser/metrics", |
| 44 "//ios/chrome/browser/ntp_tiles", |
| 41 "//ios/chrome/browser/ui", | 45 "//ios/chrome/browser/ui", |
| 42 "//ios/chrome/common", | 46 "//ios/chrome/common", |
| 43 "//ios/web", | 47 "//ios/web", |
| 44 "//net", | 48 "//net", |
| 45 "//services/service_manager/public/cpp", | 49 "//services/service_manager/public/cpp", |
| 46 "//third_party/brotli", | 50 "//third_party/brotli", |
| 47 "//ui/base", | 51 "//ui/base", |
| 48 "//url", | 52 "//url", |
| 49 ] | 53 ] |
| 50 } | 54 } |
| OLD | NEW |