Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Unified Diff: components/arc/BUILD.gn

Issue 1412863004: arc-bridge: Add the ARC Bridge Service (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Addressed feedback from Issue 1416313004 Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/arc.gypi ('k') | components/arc/DEPS » ('j') | components/arc/DEPS » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
]
}
« no previous file with comments | « components/arc.gypi ('k') | components/arc/DEPS » ('j') | components/arc/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698