| 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 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "about_ui.cc", | 8 "about_ui.cc", |
| 9 "about_ui.h", | 9 "about_ui.h", |
| 10 "crashes_ui.cc", | 10 "crashes_ui.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "//components/physical_web/data_source", | 31 "//components/physical_web/data_source", |
| 32 "//components/physical_web/webui", | 32 "//components/physical_web/webui", |
| 33 "//components/prefs", | 33 "//components/prefs", |
| 34 "//components/resources", | 34 "//components/resources", |
| 35 "//components/strings", | 35 "//components/strings", |
| 36 "//components/version_info", | 36 "//components/version_info", |
| 37 "//components/version_ui", | 37 "//components/version_ui", |
| 38 "//google_apis", | 38 "//google_apis", |
| 39 "//ios/chrome/app/strings", | 39 "//ios/chrome/app/strings", |
| 40 "//ios/chrome/browser", | 40 "//ios/chrome/browser", |
| 41 "//ios/chrome/browser:about_flags", | |
| 42 "//ios/chrome/browser/browser_state", | 41 "//ios/chrome/browser/browser_state", |
| 43 "//ios/chrome/browser/crash_report", | 42 "//ios/chrome/browser/crash_report", |
| 44 "//ios/chrome/browser/metrics", | 43 "//ios/chrome/browser/metrics", |
| 45 "//ios/chrome/browser/ntp_tiles", | 44 "//ios/chrome/browser/ntp_tiles", |
| 46 "//ios/chrome/browser/ui", | 45 "//ios/chrome/browser/ui", |
| 47 "//ios/chrome/common", | 46 "//ios/chrome/common", |
| 48 "//ios/web", | 47 "//ios/web", |
| 49 "//net", | 48 "//net", |
| 50 "//services/service_manager/public/cpp", | 49 "//services/service_manager/public/cpp", |
| 51 "//third_party/brotli", | 50 "//third_party/brotli", |
| 52 "//ui/base", | 51 "//ui/base", |
| 53 "//url", | 52 "//url", |
| 54 ] | 53 ] |
| 55 } | 54 } |
| OLD | NEW |