mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 08:16:09 +03:00
38 lines
883 B
Plaintext
38 lines
883 B
Plaintext
# Copyright 2018 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.
|
|
|
|
import("//build/config/ios/rules.gni")
|
|
|
|
source_set("app_launcher") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"app_launcher_tab_helper.h",
|
|
"app_launcher_tab_helper.mm",
|
|
"app_launcher_tab_helper_delegate.h",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//ios/chrome/browser",
|
|
"//ios/chrome/browser/web:web_internal",
|
|
"//ios/web/public",
|
|
"//url",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
testonly = true
|
|
sources = [
|
|
"app_launcher_tab_helper_unittest.mm",
|
|
]
|
|
deps = [
|
|
":app_launcher",
|
|
"//base",
|
|
"//ios/chrome/browser/web:web_internal",
|
|
"//ios/web/public/test/fakes",
|
|
"//testing/gtest",
|
|
"//url",
|
|
]
|
|
}
|