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': 'bookmarks_core_browser', | 8 'target_name': 'bookmarks_core_browser', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 'dependencies': [ | 65 'dependencies': [ |
66 '../base/base.gyp:base', | 66 '../base/base.gyp:base', |
67 ], | 67 ], |
68 'sources': [ | 68 'sources': [ |
69 'bookmarks/core/common/bookmark_constants.cc', | 69 'bookmarks/core/common/bookmark_constants.cc', |
70 'bookmarks/core/common/bookmark_constants.h', | 70 'bookmarks/core/common/bookmark_constants.h', |
71 'bookmarks/core/common/bookmark_pref_names.cc', | 71 'bookmarks/core/common/bookmark_pref_names.cc', |
72 'bookmarks/core/common/bookmark_pref_names.h', | 72 'bookmarks/core/common/bookmark_pref_names.h', |
73 ], | 73 ], |
74 }, | 74 }, |
| 75 { |
| 76 'target_name': 'bookmarks_core_test_support', |
| 77 'type': 'static_library', |
| 78 'include_dirs': [ |
| 79 '..', |
| 80 ], |
| 81 'dependencies': [ |
| 82 '../base/base.gyp:base', |
| 83 '../url/url.gyp:url_lib', |
| 84 'bookmarks_core_browser', |
| 85 ], |
| 86 'sources': [ |
| 87 'bookmarks/core/test/bookmark_test_helpers.cc', |
| 88 'bookmarks/core/test/bookmark_test_helpers.h', |
| 89 'bookmarks/core/test/test_bookmark_client.cc', |
| 90 'bookmarks/core/test/test_bookmark_client.h', |
| 91 ], |
| 92 }, |
75 ], | 93 ], |
76 } | 94 } |
OLD | NEW |