summaryrefslogtreecommitdiff
path: root/chromium/components/arc/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/arc/BUILD.gn')
-rw-r--r--chromium/components/arc/BUILD.gn18
1 files changed, 8 insertions, 10 deletions
diff --git a/chromium/components/arc/BUILD.gn b/chromium/components/arc/BUILD.gn
index 2bc11e54fb5..fb538443395 100644
--- a/chromium/components/arc/BUILD.gn
+++ b/chromium/components/arc/BUILD.gn
@@ -17,8 +17,6 @@ static_library("arc") {
"intent_helper/intent_constants.h",
"intent_helper/intent_filter.cc",
"intent_helper/intent_filter.h",
- "intent_helper/link_handler_model.cc",
- "intent_helper/link_handler_model.h",
"intent_helper/open_url_delegate.h",
]
@@ -26,13 +24,9 @@ static_library("arc") {
"//ash/components/arc",
"//ash/public/cpp",
"//components/arc/common",
+ "//components/arc/common:arc_intent_helper_constants",
"//components/exo",
"//components/google/core/common",
-
- # TODO(crbug.com/853604): After fully migrating the intent picker to query
- # directly from App Service, we will deprecated the match functionality
- # in intent_filter and this dependency will be removed.
- "//components/services/app_service/public/cpp:intents",
"//components/url_formatter",
]
}
@@ -40,11 +34,16 @@ static_library("arc") {
static_library("arc_test_support") {
testonly = true
sources = [
+ "test/fake_intent_helper_host.cc",
+ "test/fake_intent_helper_host.h",
"test/fake_intent_helper_instance.cc",
"test/fake_intent_helper_instance.h",
]
- deps = [ "//ash/components/arc/mojom" ]
+ deps = [
+ "//ash/components/arc/mojom",
+ "//ash/components/arc/session:connection_holder",
+ ]
}
source_set("unit_tests") {
@@ -52,8 +51,6 @@ source_set("unit_tests") {
sources = [
"intent_helper/arc_intent_helper_bridge_unittest.cc",
"intent_helper/custom_tab_unittest.cc",
- "intent_helper/intent_filter_unittest.cc",
- "intent_helper/link_handler_model_unittest.cc",
]
deps = [
@@ -62,6 +59,7 @@ source_set("unit_tests") {
"//ash/components/arc/mojom",
"//ash/components/arc/session",
"//base/test:test_support",
+ "//components/arc/common:arc_intent_helper_constants",
"//testing/gmock",
"//testing/gtest",
"//ui/aura:test_support",