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

Unified Diff: components/about_handler.gypi

Issue 1284173003: Create a about handler component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed the review comments 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.gypi
diff --git a/components/about_handler.gypi b/components/about_handler.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..098061014aa100e1e61d429d5866e41e7a797c6d
--- /dev/null
+++ b/components/about_handler.gypi
@@ -0,0 +1,25 @@
+# Copyright (c) 2015 The Chromium Authors. All rights reserved.
droger 2015/08/12 14:41:01 Nit: remove (c)
Jitu( very slow this week) 2015/08/13 05:34:52 Done.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'about_handler',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'about_handler/about_protocol_handler.cc',
+ 'about_handler/about_protocol_handler.h',
+ 'about_handler/url_request_about_job.cc',
+ 'about_handler/url_request_about_job.h',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698