OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 'target_name': 'history_core_browser', | |
9 'type': 'static_library', | |
10 'include_dirs': [ | |
11 '..', | |
12 ], | |
13 'dependencies': [ | |
14 '../base/base.gyp:base', | |
15 '../url/url.gyp:url_lib', | |
16 ], | |
17 'sources': [ | |
18 'history/core/browser/history_client.h', | |
19 'history/core/browser/history_client.cc', | |
20 ], | |
21 }, | |
22 { | |
23 'target_name': 'history_core_test_support', | |
24 'type': 'static_library', | |
25 'include_dirs': [ | |
26 '..', | |
27 ], | |
28 'dependencies': [ | |
29 'history_core_browser', | |
30 '../base/base.gyp:base', | |
31 '../url/url.gyp:url_lib', | |
32 ], | |
33 'sources': [ | |
34 'history/core/browser/history_client_mock_bookmarks.cc', | |
blundell
2014/05/26 07:16:58
We're moving to a structure where the support code
sdefresne
2014/05/26 16:34:02
Done.
| |
35 'history/core/browser/history_client_mock_bookmarks.h', | |
36 'history/core/browser/test_history_client.cc', | |
37 'history/core/browser/test_history_client.h', | |
38 ], | |
39 }, | |
40 ], | |
41 } | |
OLD | NEW |