| 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 import("//build/config/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 import("//build/config/locales.gni") | 6 import("//build/config/locales.gni") |
| 7 import("//build/config/mac/base_rules.gni") | 7 import("//build/config/mac/base_rules.gni") |
| 8 import("//build/mac/tweak_info_plist.gni") | 8 import("//build/mac/tweak_info_plist.gni") |
| 9 import("//ios/build/chrome_build.gni") | 9 import("//ios/build/chrome_build.gni") |
| 10 import("//ios/chrome/extension_repack.gni") | 10 import("//ios/chrome/extension_repack.gni") |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "today_view_controller.mm", | 50 "today_view_controller.mm", |
| 51 "transparent_button.h", | 51 "transparent_button.h", |
| 52 "transparent_button.mm", | 52 "transparent_button.mm", |
| 53 "ui_util.h", | 53 "ui_util.h", |
| 54 "ui_util.mm", | 54 "ui_util.mm", |
| 55 "url_table_cell.h", | 55 "url_table_cell.h", |
| 56 "url_table_cell.mm", | 56 "url_table_cell.mm", |
| 57 ] | 57 ] |
| 58 | 58 |
| 59 deps = [ | 59 deps = [ |
| 60 ":packed_resources", |
| 60 ":resources", | 61 ":resources", |
| 61 "//base", | 62 "//base", |
| 62 "//base:i18n", | 63 "//base:i18n", |
| 63 "//components/metrics", | 64 "//components/metrics", |
| 64 "//components/metrics:net", | 65 "//components/metrics:net", |
| 65 "//components/open_from_clipboard", | 66 "//components/open_from_clipboard", |
| 66 "//components/prefs", | 67 "//components/prefs", |
| 67 "//components/variations", | 68 "//components/variations", |
| 68 "//components/version_info", | 69 "//components/version_info", |
| 69 "//ios/chrome/common", | 70 "//ios/chrome/common", |
| 70 "//ios/chrome/common/app_group", | 71 "//ios/chrome/common/app_group", |
| 71 "//ios/chrome/common/app_group:client", | 72 "//ios/chrome/common/app_group:client", |
| 72 "//ios/chrome/common/physical_web", | 73 "//ios/chrome/common/physical_web", |
| 73 "//ios/chrome/today_extension:packed_resources", | |
| 74 "//ios/chrome/today_extension/strings", | 74 "//ios/chrome/today_extension/strings", |
| 75 "//ios/third_party/material_components_ios", | 75 "//ios/third_party/material_components_ios", |
| 76 "//net", | 76 "//net", |
| 77 "//ui/base", | 77 "//ui/base", |
| 78 "//url", | 78 "//url", |
| 79 ] | 79 ] |
| 80 bundle_deps_filter = [ "//third_party/icu:icudata" ] | 80 bundle_deps_filter = [ "//third_party/icu:icudata" ] |
| 81 | 81 |
| 82 libs = [ | 82 libs = [ |
| 83 "CoreGraphics.framework", | 83 "CoreGraphics.framework", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 110 "resources/todayview_physical_web@2x.png", | 110 "resources/todayview_physical_web@2x.png", |
| 111 "resources/todayview_physical_web@3x.png", | 111 "resources/todayview_physical_web@3x.png", |
| 112 "resources/todayview_voice_search.png", | 112 "resources/todayview_voice_search.png", |
| 113 "resources/todayview_voice_search@2x.png", | 113 "resources/todayview_voice_search@2x.png", |
| 114 "resources/todayview_voice_search@3x.png", | 114 "resources/todayview_voice_search@3x.png", |
| 115 ] | 115 ] |
| 116 outputs = [ | 116 outputs = [ |
| 117 "{{bundle_resources_dir}}/{{source_file_part}}", | 117 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 118 ] | 118 ] |
| 119 } | 119 } |
| OLD | NEW |