Index: components/arc/BUILD.gn |
diff --git a/components/upload_list/BUILD.gn b/components/arc/BUILD.gn |
similarity index 58% |
copy from components/upload_list/BUILD.gn |
copy to components/arc/BUILD.gn |
index b184db0e3eb518dd65686759624d6760f362cce4..e6d6cae938cabf6184600255ae01f581ec0af6d2 100644 |
--- a/components/upload_list/BUILD.gn |
+++ b/components/arc/BUILD.gn |
@@ -2,28 +2,31 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-source_set("upload_list") { |
+static_library("arc") { |
sources = [ |
- "crash_upload_list.cc", |
- "crash_upload_list.h", |
- "upload_list.cc", |
- "upload_list.h", |
+ "arc_bridge_service.cc", |
+ "arc_bridge_service.h", |
+ "common/arc_message_generator.cc", |
] |
deps = [ |
"//base", |
+ "//chromeos", |
+ "//ipc", |
] |
} |
source_set("unit_tests") { |
testonly = true |
sources = [ |
- "upload_list_unittest.cc", |
+ "arc_bridge_service_unittest.cc", |
] |
deps = [ |
- ":upload_list", |
+ ":arc", |
"//base", |
+ "//chromeos", |
+ "//ipc", |
"//testing/gtest", |
] |
} |