Index: components/arc/BUILD.gn |
diff --git a/components/upload_list/BUILD.gn b/components/arc/BUILD.gn |
similarity index 54% |
copy from components/upload_list/BUILD.gn |
copy to components/arc/BUILD.gn |
index b184db0e3eb518dd65686759624d6760f362cce4..1cf403f7d17fca575156ecd738b1c9a457ccb1cf 100644 |
--- a/components/upload_list/BUILD.gn |
+++ b/components/arc/BUILD.gn |
@@ -2,28 +2,34 @@ |
# 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", |
+ "arc_pref_names.cc", |
+ "arc_pref_names.h", |
+ "arc_prefs.cc", |
+ "arc_prefs.h", |
] |
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", |
] |
} |