| 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 | 6 |
| 7 source_set("ui_arc") { | |
| 8 sources = [ | |
| 9 "network_activity_indicator_manager.h", | |
| 10 "network_activity_indicator_manager.mm", | |
| 11 ] | |
| 12 deps = [ | |
| 13 "//base", | |
| 14 "//ios/chrome/browser", | |
| 15 ] | |
| 16 configs += [ "//build/config/compiler:enable_arc" ] | |
| 17 } | |
| 18 | |
| 19 source_set("ui") { | 7 source_set("ui") { |
| 20 configs += [ "//build/config/compiler:enable_arc" ] | 8 configs += [ "//build/config/compiler:enable_arc" ] |
| 21 sources = [ | 9 sources = [ |
| 22 "UIView+SizeClassSupport.h", | 10 "UIView+SizeClassSupport.h", |
| 23 "UIView+SizeClassSupport.mm", | 11 "UIView+SizeClassSupport.mm", |
| 24 "animation_util.h", | 12 "animation_util.h", |
| 25 "animation_util.mm", | 13 "animation_util.mm", |
| 26 "background_generator.h", | 14 "background_generator.h", |
| 27 "background_generator.mm", | 15 "background_generator.mm", |
| 28 "browser_otr_state.h", | 16 "browser_otr_state.h", |
| 29 "browser_otr_state.mm", | 17 "browser_otr_state.mm", |
| 30 "favicon_view.h", | 18 "favicon_view.h", |
| 31 "favicon_view.mm", | 19 "favicon_view.mm", |
| 32 "file_locations.h", | 20 "file_locations.h", |
| 33 "file_locations.mm", | 21 "file_locations.mm", |
| 34 "image_util.h", | 22 "image_util.h", |
| 35 "image_util.mm", | 23 "image_util.mm", |
| 36 "native_content_controller.h", | 24 "native_content_controller.h", |
| 37 "native_content_controller.mm", | 25 "native_content_controller.mm", |
| 26 "network_activity_indicator_manager.h", |
| 27 "network_activity_indicator_manager.mm", |
| 38 "orientation_limiting_navigation_controller.h", | 28 "orientation_limiting_navigation_controller.h", |
| 39 "orientation_limiting_navigation_controller.mm", | 29 "orientation_limiting_navigation_controller.mm", |
| 40 "prerender_final_status.h", | 30 "prerender_final_status.h", |
| 41 "reversed_animation.h", | 31 "reversed_animation.h", |
| 42 "reversed_animation.mm", | 32 "reversed_animation.mm", |
| 43 "rtl_geometry.h", | 33 "rtl_geometry.h", |
| 44 "rtl_geometry.mm", | 34 "rtl_geometry.mm", |
| 45 "show_mail_composer_util.h", | 35 "show_mail_composer_util.h", |
| 46 "show_mail_composer_util.mm", | 36 "show_mail_composer_util.mm", |
| 47 "show_privacy_settings_util.h", | 37 "show_privacy_settings_util.h", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 58 "//base", | 48 "//base", |
| 59 "//base:i18n", | 49 "//base:i18n", |
| 60 "//ios/chrome/browser", | 50 "//ios/chrome/browser", |
| 61 "//ios/chrome/browser/favicon", | 51 "//ios/chrome/browser/favicon", |
| 62 "//ios/chrome/browser/ui/commands", | 52 "//ios/chrome/browser/ui/commands", |
| 63 "//ios/public/provider/chrome/browser", | 53 "//ios/public/provider/chrome/browser", |
| 64 "//ios/web", | 54 "//ios/web", |
| 65 "//ui/base", | 55 "//ui/base", |
| 66 "//ui/gfx", | 56 "//ui/gfx", |
| 67 ] | 57 ] |
| 68 public_deps = [ | 58 allow_circular_includes_from = [ "//ios/chrome/browser/ui/commands" ] |
| 69 ":ui_arc", | |
| 70 ] | |
| 71 allow_circular_includes_from = [ | |
| 72 ":ui_arc", | |
| 73 "//ios/chrome/browser/ui/commands", | |
| 74 ] | |
| 75 libs = [ | 59 libs = [ |
| 76 "Accelerate.framework", | 60 "Accelerate.framework", |
| 77 "CoreGraphics.framework", | 61 "CoreGraphics.framework", |
| 78 "QuartzCore.framework", | 62 "QuartzCore.framework", |
| 79 ] | 63 ] |
| 80 } | 64 } |
| 81 | 65 |
| 82 source_set("unit_tests") { | 66 source_set("unit_tests") { |
| 83 testonly = true | 67 testonly = true |
| 84 sources = [ | 68 sources = [ |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 "//components/resources/terms/terms_tr.html", | 152 "//components/resources/terms/terms_tr.html", |
| 169 "//components/resources/terms/terms_uk.html", | 153 "//components/resources/terms/terms_uk.html", |
| 170 "//components/resources/terms/terms_vi.html", | 154 "//components/resources/terms/terms_vi.html", |
| 171 "//components/resources/terms/terms_zh-CN.html", | 155 "//components/resources/terms/terms_zh-CN.html", |
| 172 "//components/resources/terms/terms_zh-TW.html", | 156 "//components/resources/terms/terms_zh-TW.html", |
| 173 ] | 157 ] |
| 174 outputs = [ | 158 outputs = [ |
| 175 "{{bundle_resources_dir}}/{{source_file_part}}", | 159 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 176 ] | 160 ] |
| 177 } | 161 } |
| OLD | NEW |