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

Unified Diff: components/visitedlink.gypi

Issue 11825011: Componentize visitedlinks to src/components/visitedlink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final rebase Created 7 years, 11 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
« no previous file with comments | « components/components.gyp ('k') | components/visitedlink/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/visitedlink.gypi
diff --git a/components/visitedlink.gypi b/components/visitedlink.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..ddaa20fdd6612015732d8ae0f778b98e1ba8e5eb
--- /dev/null
+++ b/components/visitedlink.gypi
@@ -0,0 +1,66 @@
+# Copyright (c) 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'visitedlink_common',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_common',
+ '../build/temp_gyp/googleurl.gyp:googleurl',
+ '../ipc/ipc.gyp:ipc',
+ ],
+ 'sources': [
+ 'visitedlink/common/visitedlink_common.cc',
+ 'visitedlink/common/visitedlink_common.h',
+ 'visitedlink/common/visitedlink_message_generator.cc',
+ 'visitedlink/common/visitedlink_message_generator.h',
+ 'visitedlink/common/visitedlink_messages.h',
+ ],
+ },
+ {
+ 'target_name': 'visitedlink_browser',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '../skia/config',
+ ],
+ 'dependencies': [
+ 'visitedlink_common',
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_browser',
+ '../content/content.gyp:content_common',
+ ],
+ 'sources': [
+ 'visitedlink/browser/visitedlink_delegate.h',
+ 'visitedlink/browser/visitedlink_event_listener.cc',
+ 'visitedlink/browser/visitedlink_event_listener.h',
+ 'visitedlink/browser/visitedlink_master.cc',
+ 'visitedlink/browser/visitedlink_master.h',
+ ],
+ }
+ ],
+ 'conditions': [
+ ['OS != "ios"', {
+ 'targets': [
+ {
+ 'target_name': 'visitedlink_renderer',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'visitedlink_common',
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_common',
+ '../content/content.gyp:content_renderer',
+ '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
+ ],
+ 'sources': [
+ 'visitedlink/renderer/visitedlink_slave.cc',
+ 'visitedlink/renderer/visitedlink_slave.h',
+ ],
+ },
+ ],
+ }],
+ ],
+}
« no previous file with comments | « components/components.gyp ('k') | components/visitedlink/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698