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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « components/components.gyp ('k') | components/visitedlink/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'visitedlink_common',
9 'type': 'static_library',
10 'dependencies': [
11 '../base/base.gyp:base',
12 '../content/content.gyp:content_common',
13 '../build/temp_gyp/googleurl.gyp:googleurl',
14 '../ipc/ipc.gyp:ipc',
15 ],
16 'sources': [
17 'visitedlink/common/visitedlink_common.cc',
18 'visitedlink/common/visitedlink_common.h',
19 'visitedlink/common/visitedlink_message_generator.cc',
20 'visitedlink/common/visitedlink_message_generator.h',
21 'visitedlink/common/visitedlink_messages.h',
22 ],
23 },
24 {
25 'target_name': 'visitedlink_browser',
26 'type': 'static_library',
27 'include_dirs': [
28 '../skia/config',
29 ],
30 'dependencies': [
31 'visitedlink_common',
32 '../base/base.gyp:base',
33 '../content/content.gyp:content_browser',
34 '../content/content.gyp:content_common',
35 ],
36 'sources': [
37 'visitedlink/browser/visitedlink_delegate.h',
38 'visitedlink/browser/visitedlink_event_listener.cc',
39 'visitedlink/browser/visitedlink_event_listener.h',
40 'visitedlink/browser/visitedlink_master.cc',
41 'visitedlink/browser/visitedlink_master.h',
42 ],
43 }
44 ],
45 'conditions': [
46 ['OS != "ios"', {
47 'targets': [
48 {
49 'target_name': 'visitedlink_renderer',
50 'type': 'static_library',
51 'dependencies': [
52 'visitedlink_common',
53 '../base/base.gyp:base',
54 '../content/content.gyp:content_common',
55 '../content/content.gyp:content_renderer',
56 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
57 ],
58 'sources': [
59 'visitedlink/renderer/visitedlink_slave.cc',
60 'visitedlink/renderer/visitedlink_slave.h',
61 ],
62 },
63 ],
64 }],
65 ],
66 }
OLDNEW
« 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