naiveproxy/ios/chrome/browser/drag_and_drop/BUILD.gn
2018-02-02 05:49:39 -05:00

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",
]
}