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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
75 'dependencies': [ | 75 'dependencies': [ |
76 '../base/base.gyp:base', | 76 '../base/base.gyp:base', |
77 ], | 77 ], |
78 'sources': [ | 78 'sources': [ |
79 'bookmarks/core/common/bookmark_constants.cc', | 79 'bookmarks/core/common/bookmark_constants.cc', |
80 'bookmarks/core/common/bookmark_constants.h', | 80 'bookmarks/core/common/bookmark_constants.h', |
81 'bookmarks/core/common/bookmark_pref_names.cc', | 81 'bookmarks/core/common/bookmark_pref_names.cc', |
82 'bookmarks/core/common/bookmark_pref_names.h', | 82 'bookmarks/core/common/bookmark_pref_names.h', |
83 ], | 83 ], |
84 }, | 84 }, |
85 { | |
86 'target_name': 'bookmarks_core_tests', | |
sky
2014/05/01 19:15:04
bookmarks_core_test_support
sdefresne
2014/05/05 14:12:33
Done.
| |
87 'type': 'static_library', | |
88 'include_dirs': [ | |
89 '..', | |
90 ], | |
91 'dependencies': [ | |
92 '../base/base.gyp:base', | |
93 '../url/url.gyp:url_lib', | |
94 'bookmarks_core_browser', | |
95 ], | |
96 'sources': [ | |
97 'bookmarks/core/tests/bookmark_test_helpers.cc', | |
98 'bookmarks/core/tests/bookmark_test_helpers.h', | |
99 'bookmarks/core/tests/test_bookmark_client.cc', | |
100 'bookmarks/core/tests/test_bookmark_client.h', | |
101 ], | |
102 }, | |
85 ], | 103 ], |
86 } | 104 } |
OLD | NEW |