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