mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
31 lines
741 B
Plaintext
31 lines
741 B
Plaintext
# Copyright 2017 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("snackbar") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"snackbar_coordinator.h",
|
|
"snackbar_coordinator.mm",
|
|
]
|
|
deps = [
|
|
"//ios/chrome/browser/ui/commands",
|
|
"//ios/third_party/material_components_ios",
|
|
]
|
|
libs = [ "UIKit.framework" ]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
testonly = true
|
|
sources = [
|
|
"snackbar_coordinator_unittest.mm",
|
|
]
|
|
deps = [
|
|
":snackbar",
|
|
"//ios/chrome/browser/ui/commands",
|
|
"//testing/gtest",
|
|
"//third_party/ocmock",
|
|
]
|
|
}
|