mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
36 lines
857 B
Plaintext
36 lines
857 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("broadcaster") {
|
||
|
sources = [
|
||
|
"chrome_broadcast_observer.h",
|
||
|
"chrome_broadcast_observer_bridge.h",
|
||
|
"chrome_broadcast_observer_bridge.mm",
|
||
|
"chrome_broadcaster.h",
|
||
|
"chrome_broadcaster.mm",
|
||
|
]
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//ios/chrome/browser/ui/content_suggestions:content_suggestions_constant",
|
||
|
]
|
||
|
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
}
|
||
|
|
||
|
source_set("unit_tests") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"chrome_broadcast_observer_bridge_unittest.mm",
|
||
|
"chrome_broadcaster_unittest.mm",
|
||
|
]
|
||
|
deps = [
|
||
|
":broadcaster",
|
||
|
"//base",
|
||
|
"//testing/gtest",
|
||
|
"//testing/perf",
|
||
|
]
|
||
|
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
}
|