Index: components/arc/BUILD.gn |
diff --git a/components/mime_util/BUILD.gn b/components/arc/BUILD.gn |
similarity index 58% |
copy from components/mime_util/BUILD.gn |
copy to components/arc/BUILD.gn |
index 0e3a8137a7adfd9b48b781ea6dc5128bf03c126b..e6d6cae938cabf6184600255ae01f581ec0af6d2 100644 |
--- a/components/mime_util/BUILD.gn |
+++ b/components/arc/BUILD.gn |
@@ -2,32 +2,31 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-static_library("mime_util") { |
+static_library("arc") { |
sources = [ |
- "mime_util.cc", |
- "mime_util.h", |
+ "arc_bridge_service.cc", |
+ "arc_bridge_service.h", |
+ "common/arc_message_generator.cc", |
] |
deps = [ |
"//base", |
- "//net", |
+ "//chromeos", |
+ "//ipc", |
] |
- |
- # iOS doesn't use and must not depend on //media |
- if (!is_ios) { |
- deps += [ "//media" ] |
- } |
} |
source_set("unit_tests") { |
testonly = true |
sources = [ |
- "mime_util_unittest.cc", |
+ "arc_bridge_service_unittest.cc", |
] |
deps = [ |
- ":mime_util", |
+ ":arc", |
"//base", |
+ "//chromeos", |
+ "//ipc", |
"//testing/gtest", |
] |
} |