Chromium Code Reviews| OLD | NEW |
|---|---|
| (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': [ | |
|
Jói
2013/01/09 00:51:44
It would be nice if there was a 'visitedlink' targ
boliu
2013/01/09 01:16:40
I don't entirely know what this means. I've heard
Jói
2013/01/09 18:42:42
You use '<(component)' as the type of the target;
| |
| 7 { | |
| 8 'target_name': 'visitedlink_common', | |
| 9 'type': 'static_library', | |
| 10 'include_dirs': [ | |
| 11 '..', | |
| 12 ], | |
| 13 'dependencies': [ | |
| 14 '../base/base.gyp:base', | |
| 15 '../content/content.gyp:content_common', | |
| 16 '../build/temp_gyp/googleurl.gyp:googleurl', | |
| 17 '../ipc/ipc.gyp:ipc', | |
| 18 ], | |
| 19 'sources': [ | |
| 20 'common/render_messages.h', | |
| 21 'common/visitedlink_common.cc', | |
| 22 'common/visitedlink_common.h', | |
| 23 'common/visitedlink_message_generator.cc', | |
| 24 'common/visitedlink_message_generator.h', | |
| 25 ], | |
| 26 }, | |
| 27 { | |
| 28 'target_name': 'visitedlink_browser', | |
| 29 'type': 'static_library', | |
| 30 'include_dirs': [ | |
| 31 '..', | |
| 32 ], | |
| 33 'dependencies': [ | |
| 34 'visitedlink_common', | |
| 35 '../base/base.gyp:base', | |
| 36 '../content/content.gyp:content_browser', | |
| 37 '../content/content.gyp:content_common', | |
| 38 ], | |
| 39 'sources': [ | |
| 40 'browser/visitedlink_delegate.h', | |
| 41 'browser/visitedlink_event_listener.cc', | |
| 42 'browser/visitedlink_event_listener.h', | |
| 43 'browser/visitedlink_master.cc', | |
| 44 'browser/visitedlink_master.h', | |
| 45 ], | |
| 46 }, | |
| 47 { | |
| 48 'target_name': 'visitedlink_renderer', | |
| 49 'type': 'static_library', | |
| 50 'include_dirs': [ | |
| 51 '..', | |
| 52 ], | |
| 53 'dependencies': [ | |
| 54 'visitedlink_common', | |
| 55 '../base/base.gyp:base', | |
| 56 '../content/content.gyp:content_common', | |
| 57 '../content/content.gyp:content_renderer', | |
| 58 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | |
| 59 ], | |
| 60 'sources': [ | |
| 61 'renderer/visitedlink_slave.cc', | |
| 62 'renderer/visitedlink_slave.h', | |
| 63 ], | |
| 64 }, | |
| 65 ], | |
| 66 } | |
| OLD | NEW |