Remove the libc++ and ASan/TSan/MSan runtime dependencies from base.gyp:sanitizer_options
[chromium-blink-merge.git] / components / bookmarks.gypi
blob4fe4818caab6a10a90ef9fba2dbf6dd34a87b8b9
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.
6   'targets': [
7     {
8       'target_name': 'bookmarks_core_browser',
9       'type': 'static_library',
10       'include_dirs': [
11         '..',
12       ],
13       'dependencies': [
14         '../base/base.gyp:base',
15         '../ui/base/ui_base.gyp:ui_base',
16         '../ui/gfx/gfx.gyp:gfx',
17         '../url/url.gyp:url_lib',
18       ],
19       'sources': [
20         'bookmarks/core/browser/bookmark_node.cc',
21         'bookmarks/core/browser/bookmark_node.h',
22         'bookmarks/core/browser/bookmark_title_match.cc',
23         'bookmarks/core/browser/bookmark_title_match.h',
24       ],
25     },
26     {
27       'target_name': 'bookmarks_core_common',
28       'type': 'static_library',
29       'include_dirs': [
30         '..',
31       ],
32       'dependencies': [
33         '../base/base.gyp:base',
34       ],
35       'sources': [
36         'bookmarks/core/common/bookmark_constants.cc',
37         'bookmarks/core/common/bookmark_constants.h',
38         'bookmarks/core/common/bookmark_pref_names.cc',
39         'bookmarks/core/common/bookmark_pref_names.h',
40       ],
41     },
42   ],