OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'history_core_browser', | 8 'target_name': 'history_core_browser', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'include_dirs': [ | 10 'include_dirs': [ |
11 '..', | 11 '..', |
12 ], | 12 ], |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
15 '../url/url.gyp:url_lib', | 15 '../url/url.gyp:url_lib', |
16 'keyed_service_core', | 16 'keyed_service_core', |
17 ], | 17 ], |
18 'sources': [ | 18 'sources': [ |
19 'history/core/browser/history_client.h', | 19 'history/core/browser/history_client.h', |
20 'history/core/browser/history_client.cc', | 20 'history/core/browser/history_client.cc', |
21 ], | 21 ], |
22 }, | 22 }, |
23 { | 23 { |
| 24 'target_name': 'history_core_common', |
| 25 'type': 'static_library', |
| 26 'include_dirs': [ |
| 27 '..', |
| 28 ], |
| 29 'dependencies': [ |
| 30 '../base/base.gyp:base', |
| 31 ], |
| 32 'sources': [ |
| 33 'history/core/common/thumbnail_score.cc', |
| 34 'history/core/common/thumbnail_score.h', |
| 35 ], |
| 36 }, |
| 37 { |
24 'target_name': 'history_core_test_support', | 38 'target_name': 'history_core_test_support', |
25 'type': 'static_library', | 39 'type': 'static_library', |
26 'include_dirs': [ | 40 'include_dirs': [ |
27 '..', | 41 '..', |
28 ], | 42 ], |
29 'dependencies': [ | 43 'dependencies': [ |
30 'history_core_browser', | 44 'history_core_browser', |
31 '../base/base.gyp:base', | 45 '../base/base.gyp:base', |
32 '../url/url.gyp:url_lib', | 46 '../url/url.gyp:url_lib', |
33 ], | 47 ], |
34 'sources': [ | 48 'sources': [ |
35 'history/core/test/history_client_fake_bookmarks.cc', | 49 'history/core/test/history_client_fake_bookmarks.cc', |
36 'history/core/test/history_client_fake_bookmarks.h', | 50 'history/core/test/history_client_fake_bookmarks.h', |
37 ], | 51 ], |
38 }, | 52 }, |
39 ], | 53 ], |
40 } | 54 } |
OLD | NEW |