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

Unified Diff: components/about_handler/BUILD.gn

Issue 1284173003: Create a about handler component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years, 4 months 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
Index: components/about_handler/BUILD.gn
diff --git a/chrome/installer/launcher_support/BUILD.gn b/components/about_handler/BUILD.gn
similarity index 54%
copy from chrome/installer/launcher_support/BUILD.gn
copy to components/about_handler/BUILD.gn
index 9abab50df0aefabdc299b6795e0fee8f77ee83f2..d14500239967be492dc56e0265766d75159cc628 100644
--- a/chrome/installer/launcher_support/BUILD.gn
+++ b/components/about_handler/BUILD.gn
@@ -2,13 +2,16 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("launcher_support") {
+static_library("about_handler") {
droger 2015/08/13 08:53:34 source_set("about_handler") { source sets are sli
Jitu( very slow this week) 2015/08/13 14:15:03 just curious why ? Done.
sources = [
- "chrome_launcher_support.cc",
- "chrome_launcher_support.h",
+ "about_protocol_handler.cc",
+ "about_protocol_handler.h",
+ "url_request_about_job.cc",
+ "url_request_about_job.h",
]
deps = [
"//base",
+ "//net",
]
}

Powered by Google App Engine
This is Rietveld 408576698