mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
35 lines
813 B
Plaintext
35 lines
813 B
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("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/chrome/browser/ui/coordinators:chrome_coordinators",
|
|
"//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",
|
|
]
|
|
}
|