| 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") { | 7 source_set("ui_arc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "network_activity_indicator_manager.h", | 9 "network_activity_indicator_manager.h", |
| 10 "network_activity_indicator_manager.mm", | 10 "network_activity_indicator_manager.mm", |
| 11 ] | 11 ] |
| 12 deps = [ | 12 deps = [ |
| 13 "//base", | 13 "//base", |
| 14 ] | 14 ] |
| 15 configs += [ "//build/config/compiler:enable_arc" ] | 15 configs += [ "//build/config/compiler:enable_arc" ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 source_set("ui") { | 18 source_set("ui") { |
| 19 configs += [ "//build/config/compiler:enable_arc" ] | 19 configs += [ "//build/config/compiler:enable_arc" ] |
| 20 sources = [ | 20 sources = [ |
| 21 "UIView+SizeClassSupport.h", | 21 "UIView+SizeClassSupport.h", |
| 22 "UIView+SizeClassSupport.mm", | 22 "UIView+SizeClassSupport.mm", |
| 23 "animation_util.h", | 23 "animation_util.h", |
| 24 "animation_util.mm", | 24 "animation_util.mm", |
| 25 "background_generator.h", | 25 "background_generator.h", |
| 26 "background_generator.mm", | 26 "background_generator.mm", |
| 27 "browser_otr_state.h", | |
| 28 "browser_otr_state.mm", | |
| 29 "favicon_view.h", | 27 "favicon_view.h", |
| 30 "favicon_view.mm", | 28 "favicon_view.mm", |
| 31 "file_locations.h", | 29 "file_locations.h", |
| 32 "file_locations.mm", | 30 "file_locations.mm", |
| 33 "image_util.h", | 31 "image_util.h", |
| 34 "image_util.mm", | 32 "image_util.mm", |
| 35 "native_content_controller.h", | 33 "native_content_controller.h", |
| 36 "native_content_controller.mm", | 34 "native_content_controller.mm", |
| 37 "orientation_limiting_navigation_controller.h", | 35 "orientation_limiting_navigation_controller.h", |
| 38 "orientation_limiting_navigation_controller.mm", | 36 "orientation_limiting_navigation_controller.mm", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 52 "uikit_ui_util.h", | 50 "uikit_ui_util.h", |
| 53 "uikit_ui_util.mm", | 51 "uikit_ui_util.mm", |
| 54 "url_loader.h", | 52 "url_loader.h", |
| 55 ] | 53 ] |
| 56 deps = [ | 54 deps = [ |
| 57 "//base", | 55 "//base", |
| 58 "//base:i18n", | 56 "//base:i18n", |
| 59 "//ios/chrome/browser", | 57 "//ios/chrome/browser", |
| 60 "//ios/chrome/browser/favicon", | 58 "//ios/chrome/browser/favicon", |
| 61 "//ios/chrome/browser/ui/commands", | 59 "//ios/chrome/browser/ui/commands", |
| 62 "//ios/public/provider/chrome/browser", | |
| 63 "//ios/web", | 60 "//ios/web", |
| 64 "//ui/base", | 61 "//ui/base", |
| 65 "//ui/gfx", | 62 "//ui/gfx", |
| 66 ] | 63 ] |
| 67 public_deps = [ | 64 public_deps = [ |
| 68 ":ui_arc", | 65 ":ui_arc", |
| 69 ] | 66 ] |
| 70 allow_circular_includes_from = [ | 67 allow_circular_includes_from = [ |
| 71 ":ui_arc", | 68 ":ui_arc", |
| 72 "//ios/chrome/browser/ui/commands", | 69 "//ios/chrome/browser/ui/commands", |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 } | 455 } |
| 459 | 456 |
| 460 # Clean skeleton targets | 457 # Clean skeleton targets |
| 461 source_set("ui_clean_skeleton") { | 458 source_set("ui_clean_skeleton") { |
| 462 sources = [ | 459 sources = [ |
| 463 "ui_types.h", | 460 "ui_types.h", |
| 464 ] | 461 ] |
| 465 | 462 |
| 466 configs += [ "//build/config/compiler:enable_arc" ] | 463 configs += [ "//build/config/compiler:enable_arc" ] |
| 467 } | 464 } |
| OLD | NEW |