mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
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_abuse_detector.h",
|
|
"app_launcher_abuse_detector.mm",
|
|
"app_launcher_tab_helper.h",
|
|
"app_launcher_tab_helper.mm",
|
|
"app_launcher_tab_helper_delegate.h",
|
|
"app_launching_state.h",
|
|
"app_launching_state.mm",
|
|
]
|
|
deps = [
|
|
":feature_flags",
|
|
"//base",
|
|
"//components/reading_list/core:core",
|
|
"//ios/chrome/browser",
|
|
"//ios/chrome/browser/reading_list",
|
|
"//ios/chrome/browser/tabs",
|
|
"//ios/web/public",
|
|
"//url",
|
|
]
|
|
}
|
|
|
|
source_set("feature_flags") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"app_launcher_flags.h",
|
|
"app_launcher_flags.mm",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
testonly = true
|
|
sources = [
|
|
"app_launcher_abuse_detector_unittest.mm",
|
|
"app_launcher_tab_helper_unittest.mm",
|
|
"app_launching_state_unittest.mm",
|
|
]
|
|
deps = [
|
|
":app_launcher",
|
|
":feature_flags",
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//components/reading_list/core:core",
|
|
"//ios/chrome/browser",
|
|
"//ios/chrome/browser/browser_state:test_support",
|
|
"//ios/chrome/browser/reading_list",
|
|
"//ios/chrome/browser/tabs",
|
|
"//ios/chrome/browser/web:tab_id_tab_helper",
|
|
"//ios/chrome/browser/web:web_internal",
|
|
"//ios/web/public/test/fakes",
|
|
"//testing/gtest",
|
|
"//url",
|
|
]
|
|
}
|