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', |
sdefresne
2014/06/25 13:21:09
You need to add net/net.gyp:net as dependency here
hashimoto
2014/06/25 16:37:33
Good catch.
Added net and query_parser.
| |
17 ], | 17 ], |
18 'sources': [ | 18 'sources': [ |
19 'history/core/browser/history_client.cc', | |
19 'history/core/browser/history_client.h', | 20 'history/core/browser/history_client.h', |
20 'history/core/browser/history_client.cc', | |
21 'history/core/browser/keyword_id.h', | 21 'history/core/browser/keyword_id.h', |
22 'history/core/browser/keyword_search_term.cc', | |
23 'history/core/browser/keyword_search_term.h', | |
24 'history/core/browser/url_database.cc', | |
25 'history/core/browser/url_database.h', | |
26 'history/core/browser/url_row.cc', | |
27 'history/core/browser/url_row.h', | |
22 ], | 28 ], |
23 }, | 29 }, |
24 { | 30 { |
25 'target_name': 'history_core_common', | 31 'target_name': 'history_core_common', |
26 'type': 'static_library', | 32 'type': 'static_library', |
27 'include_dirs': [ | 33 'include_dirs': [ |
28 '..', | 34 '..', |
29 ], | 35 ], |
30 'dependencies': [ | 36 'dependencies': [ |
31 '../base/base.gyp:base', | 37 '../base/base.gyp:base', |
(...skipping 14 matching lines...) Expand all Loading... | |
46 '../base/base.gyp:base', | 52 '../base/base.gyp:base', |
47 '../url/url.gyp:url_lib', | 53 '../url/url.gyp:url_lib', |
48 ], | 54 ], |
49 'sources': [ | 55 'sources': [ |
50 'history/core/test/history_client_fake_bookmarks.cc', | 56 'history/core/test/history_client_fake_bookmarks.cc', |
51 'history/core/test/history_client_fake_bookmarks.h', | 57 'history/core/test/history_client_fake_bookmarks.h', |
52 ], | 58 ], |
53 }, | 59 }, |
54 ], | 60 ], |
55 } | 61 } |
OLD | NEW |