mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
34 lines
776 B
Plaintext
34 lines
776 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("drag_and_drop") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"drag_and_drop_flag.h",
|
|
"drag_and_drop_flag.mm",
|
|
"drop_and_navigate_delegate.h",
|
|
"drop_and_navigate_interaction.h",
|
|
"drop_and_navigate_interaction.mm",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//net:net",
|
|
"//url:url",
|
|
]
|
|
libs = [ "UIKit.framework" ]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
testonly = true
|
|
sources = [
|
|
"drop_and_navigate_interaction_unittest.mm",
|
|
]
|
|
deps = [
|
|
":drag_and_drop",
|
|
"//base",
|
|
"//testing/gtest",
|
|
]
|
|
}
|