| 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 bundle_data("resources") { | 5 bundle_data("resources") { |
| 6 sources = [ | 6 sources = [ |
| 7 "resources/app_icon_placeholder.png", | 7 "resources/app_icon_placeholder.png", |
| 8 "resources/app_icon_placeholder@2x.png", | 8 "resources/app_icon_placeholder@2x.png", |
| 9 "resources/app_icon_placeholder@3x.png", | 9 "resources/app_icon_placeholder@3x.png", |
| 10 "resources/encryption_error.png", | 10 "resources/encryption_error.png", |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 "//ios/web:test_support", | 361 "//ios/web:test_support", |
| 362 "//net", | 362 "//net", |
| 363 "//ui/base", | 363 "//ui/base", |
| 364 "//url", | 364 "//url", |
| 365 ] | 365 ] |
| 366 libs = [ | 366 libs = [ |
| 367 "UIKit.framework", | 367 "UIKit.framework", |
| 368 "XCTest.framework", | 368 "XCTest.framework", |
| 369 ] | 369 ] |
| 370 } | 370 } |
| 371 | |
| 372 # Clean Skeleton targets. | |
| 373 source_set("settings_clean_skeleton") { | |
| 374 sources = [ | |
| 375 "settings_coordinator.h", | |
| 376 "settings_coordinator.mm", | |
| 377 ] | |
| 378 | |
| 379 configs += [ "//build/config/compiler:enable_arc" ] | |
| 380 | |
| 381 deps = [ | |
| 382 ":settings", | |
| 383 "//ios/chrome/browser:browser_clean_skeleton", | |
| 384 "//ios/chrome/browser/ui/actions", | |
| 385 "//ios/chrome/browser/ui/commands:commands_clean_skeleton", | |
| 386 ] | |
| 387 } | |
| OLD | NEW |