mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-04 19:26:09 +03:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
source_set("settings") {
|
|
sources = [
|
|
"material_cell_catalog_coordinator.h",
|
|
"material_cell_catalog_coordinator.mm",
|
|
"settings_coordinator.h",
|
|
"settings_coordinator.mm",
|
|
"settings_main_page_coordinator.h",
|
|
"settings_main_page_coordinator.mm",
|
|
]
|
|
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
|
deps = [
|
|
"//base:base",
|
|
"//ios/chrome/browser/browser_state",
|
|
"//ios/chrome/browser/ui/browser_list",
|
|
"//ios/chrome/browser/ui/commands",
|
|
"//ios/chrome/browser/ui/coordinators",
|
|
"//ios/chrome/browser/ui/settings",
|
|
"//ios/clean/chrome/browser/ui/actions",
|
|
"//ios/clean/chrome/browser/ui/commands",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
sources = [
|
|
"material_cell_catalog_coordinator_unittest.mm",
|
|
]
|
|
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
|
deps = [
|
|
":settings",
|
|
"//ios/chrome/browser/browser_state:test_support",
|
|
"//ios/chrome/browser/ui/browser_list",
|
|
"//ios/chrome/browser/ui/coordinators:test_support",
|
|
"//ios/chrome/browser/ui/settings",
|
|
"//testing/gtest",
|
|
]
|
|
}
|