blob: 51f8f8eb7dda4dee2eee7a27f79e46f7c311ecc0 [file] [log] [blame]
# 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("context_menu") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [
"context_menu_coordinator.h",
"context_menu_coordinator.mm",
]
deps = [
"//base",
"//ios/chrome/browser",
"//ios/chrome/browser/ui/alert_coordinator",
"//ios/web",
"//ui/base",
"//ui/strings",
]
}
source_set("unit_tests") {
configs += [ "//build/config/compiler:enable_arc" ]
testonly = true
sources = [
"context_menu_coordinator_unittest.mm",
]
deps = [
":context_menu",
"//base",
"//ios/web",
"//testing/gtest",
]
}