| 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 "//ios/chrome/browser/tabs:tabs_internal", | 430 "//ios/chrome/browser/tabs:tabs_internal", |
| 431 "//ios/chrome/browser/ui/omnibox:omnibox_internal", | 431 "//ios/chrome/browser/ui/omnibox:omnibox_internal", |
| 432 "//ios/chrome/browser/ui/toolbar", | 432 "//ios/chrome/browser/ui/toolbar", |
| 433 "//ios/chrome/test/base:perf_test_support", | 433 "//ios/chrome/test/base:perf_test_support", |
| 434 "//testing/gtest", | 434 "//testing/gtest", |
| 435 "//third_party/ocmock", | 435 "//third_party/ocmock", |
| 436 "//ui/base:test_support", | 436 "//ui/base:test_support", |
| 437 ] | 437 ] |
| 438 libs = [ "UIKit.framework" ] | 438 libs = [ "UIKit.framework" ] |
| 439 } | 439 } |
| 440 | |
| 441 # Clean skeleton targets | |
| 442 source_set("ui_clean_skeleton") { | |
| 443 sources = [ | |
| 444 "ui_types.h", | |
| 445 ] | |
| 446 | |
| 447 configs += [ "//build/config/compiler:enable_arc" ] | |
| 448 } | |
| OLD | NEW |