| 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") { | 7 source_set("ui") { |
| 8 sources = [ | 8 sources = [ |
| 9 "UIView+SizeClassSupport.h", | 9 "UIView+SizeClassSupport.h", |
| 10 "UIView+SizeClassSupport.mm", | 10 "UIView+SizeClassSupport.mm", |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 source_set("ui_internal") { | 203 source_set("ui_internal") { |
| 204 sources = [ | 204 sources = [ |
| 205 "browser_container_view.h", | 205 "browser_container_view.h", |
| 206 "browser_container_view.mm", | 206 "browser_container_view.mm", |
| 207 "browser_view_controller.h", | 207 "browser_view_controller.h", |
| 208 "browser_view_controller.mm", | 208 "browser_view_controller.mm", |
| 209 "browser_view_controller_dependency_factory.h", | 209 "browser_view_controller_dependency_factory.h", |
| 210 "browser_view_controller_dependency_factory.mm", | 210 "browser_view_controller_dependency_factory.mm", |
| 211 "chrome_web_view_factory.h", | 211 "chrome_web_view_factory.h", |
| 212 "chrome_web_view_factory.mm", | 212 "chrome_web_view_factory.mm", |
| 213 "clipboard_util.h", |
| 214 "clipboard_util.mm", |
| 213 "external_file_controller.h", | 215 "external_file_controller.h", |
| 214 "external_file_controller.mm", | 216 "external_file_controller.mm", |
| 215 "external_file_remover.h", | 217 "external_file_remover.h", |
| 216 "external_file_remover.mm", | 218 "external_file_remover.mm", |
| 217 "fade_truncated_label.h", | 219 "fade_truncated_label.h", |
| 218 "fade_truncated_label.mm", | 220 "fade_truncated_label.mm", |
| 219 "fullscreen_controller.h", | 221 "fullscreen_controller.h", |
| 220 "fullscreen_controller.mm", | 222 "fullscreen_controller.mm", |
| 221 "key_commands_provider.h", | 223 "key_commands_provider.h", |
| 222 "key_commands_provider.mm", | 224 "key_commands_provider.mm", |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 "//ios/chrome/browser/tabs:tabs_internal", | 421 "//ios/chrome/browser/tabs:tabs_internal", |
| 420 "//ios/chrome/browser/ui/omnibox:omnibox_internal", | 422 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
| 421 "//ios/chrome/browser/ui/toolbar", | 423 "//ios/chrome/browser/ui/toolbar", |
| 422 "//ios/chrome/test/base:perf_test_support", | 424 "//ios/chrome/test/base:perf_test_support", |
| 423 "//testing/gtest", | 425 "//testing/gtest", |
| 424 "//third_party/ocmock", | 426 "//third_party/ocmock", |
| 425 "//ui/base:test_support", | 427 "//ui/base:test_support", |
| 426 ] | 428 ] |
| 427 libs = [ "UIKit.framework" ] | 429 libs = [ "UIKit.framework" ] |
| 428 } | 430 } |
| OLD | NEW |