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

Side by Side Diff: components/visitedlink/visitedlink.gypi

Issue 11825011: Componentize visitedlinks to src/components/visitedlink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add skia/config include to fix mac build (hopefully?) 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/visitedlink/test/visitedlink_unittest.cc ('k') | ipc/ipc_message_start.h » ('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 'include_dirs': [
11 '..',
12 '../skia/config',
boliu 2013/01/10 01:33:31 this is needed for mac build apparently copied ov
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../content/content.gyp:content_common',
17 '../build/temp_gyp/googleurl.gyp:googleurl',
18 '../ipc/ipc.gyp:ipc',
19 ],
20 'sources': [
21 'common/visitedlink_common.cc',
22 'common/visitedlink_common.h',
23 'common/visitedlink_message_generator.cc',
24 'common/visitedlink_message_generator.h',
25 'common/visitedlink_messages.h',
26 ],
27 },
28 {
29 'target_name': 'visitedlink_browser',
30 'type': 'static_library',
31 'include_dirs': [
32 '..',
33 ],
34 'dependencies': [
35 'visitedlink_common',
36 '../base/base.gyp:base',
37 '../content/content.gyp:content_browser',
38 '../content/content.gyp:content_common',
39 ],
40 'sources': [
41 'browser/visitedlink_delegate.h',
42 'browser/visitedlink_event_listener.cc',
43 'browser/visitedlink_event_listener.h',
44 'browser/visitedlink_master.cc',
45 'browser/visitedlink_master.h',
46 ],
47 },
48 {
49 'target_name': 'visitedlink_renderer',
50 'type': 'static_library',
51 'include_dirs': [
52 '..',
53 ],
54 'dependencies': [
55 'visitedlink_common',
56 '../base/base.gyp:base',
57 '../content/content.gyp:content_common',
58 '../content/content.gyp:content_renderer',
59 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
60 ],
61 'sources': [
62 'renderer/visitedlink_slave.cc',
63 'renderer/visitedlink_slave.h',
64 ],
65 },
66 ],
67 }
OLDNEW
« no previous file with comments | « components/visitedlink/test/visitedlink_unittest.cc ('k') | ipc/ipc_message_start.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698