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': [ |
11 '..', | 11 '..', |
12 ], | 12 ], |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
| 15 '../net/net.gyp:net', |
| 16 '../third_party/icu/icu.gyp:icuuc', |
15 '../ui/base/ui_base.gyp:ui_base', | 17 '../ui/base/ui_base.gyp:ui_base', |
16 '../ui/gfx/gfx.gyp:gfx', | 18 '../ui/gfx/gfx.gyp:gfx', |
17 '../url/url.gyp:url_lib', | 19 '../url/url.gyp:url_lib', |
| 20 'bookmarks_core_common', |
| 21 'components_strings.gyp:components_strings', |
| 22 'favicon_base', |
| 23 'query_parser', |
| 24 'startup_metric_utils', |
| 25 'user_prefs', |
18 ], | 26 ], |
19 'sources': [ | 27 'sources': [ |
20 'bookmarks/core/browser/base_bookmark_model_observer.cc', | 28 'bookmarks/core/browser/base_bookmark_model_observer.cc', |
21 'bookmarks/core/browser/base_bookmark_model_observer.h', | 29 'bookmarks/core/browser/base_bookmark_model_observer.h', |
22 'bookmarks/core/browser/bookmark_client.h', | 30 'bookmarks/core/browser/bookmark_client.h', |
| 31 'bookmarks/core/browser/bookmark_codec.cc', |
| 32 'bookmarks/core/browser/bookmark_codec.h', |
| 33 'bookmarks/core/browser/bookmark_expanded_state_tracker.cc', |
| 34 'bookmarks/core/browser/bookmark_expanded_state_tracker.h', |
| 35 'bookmarks/core/browser/bookmark_index.cc', |
| 36 'bookmarks/core/browser/bookmark_index.h', |
23 'bookmarks/core/browser/bookmark_match.cc', | 37 'bookmarks/core/browser/bookmark_match.cc', |
24 'bookmarks/core/browser/bookmark_match.h', | 38 'bookmarks/core/browser/bookmark_match.h', |
| 39 'bookmarks/core/browser/bookmark_model.cc', |
| 40 'bookmarks/core/browser/bookmark_model.h', |
25 'bookmarks/core/browser/bookmark_model_observer.h', | 41 'bookmarks/core/browser/bookmark_model_observer.h', |
26 'bookmarks/core/browser/bookmark_node.cc', | 42 'bookmarks/core/browser/bookmark_node.cc', |
27 'bookmarks/core/browser/bookmark_node.h', | 43 'bookmarks/core/browser/bookmark_node.h', |
| 44 'bookmarks/core/browser/bookmark_node_data.cc', |
| 45 'bookmarks/core/browser/bookmark_node_data.h', |
| 46 'bookmarks/core/browser/bookmark_node_data_mac.cc', |
| 47 'bookmarks/core/browser/bookmark_node_data_views.cc', |
| 48 'bookmarks/core/browser/bookmark_pasteboard_helper_mac.h', |
| 49 'bookmarks/core/browser/bookmark_pasteboard_helper_mac.mm', |
28 'bookmarks/core/browser/bookmark_prompt_prefs.cc', | 50 'bookmarks/core/browser/bookmark_prompt_prefs.cc', |
29 'bookmarks/core/browser/bookmark_prompt_prefs.h', | 51 'bookmarks/core/browser/bookmark_prompt_prefs.h', |
30 'bookmarks/core/browser/bookmark_service.h', | 52 'bookmarks/core/browser/bookmark_service.h', |
| 53 'bookmarks/core/browser/bookmark_storage.cc', |
| 54 'bookmarks/core/browser/bookmark_storage.h', |
| 55 'bookmarks/core/browser/bookmark_utils.cc', |
| 56 'bookmarks/core/browser/bookmark_utils.h', |
| 57 'bookmarks/core/browser/scoped_group_bookmark_actions.cc', |
| 58 'bookmarks/core/browser/scoped_group_bookmark_actions.h', |
| 59 ], |
| 60 'conditions': [ |
| 61 ['OS=="android"', { |
| 62 'sources!': [ |
| 63 'bookmarks/core/browser/scoped_group_bookmark_actions.cc', |
| 64 'bookmarks/core/browser/scoped_group_bookmark_actions.h', |
| 65 ], |
| 66 }] |
31 ], | 67 ], |
32 }, | 68 }, |
33 { | 69 { |
34 'target_name': 'bookmarks_core_common', | 70 'target_name': 'bookmarks_core_common', |
35 'type': 'static_library', | 71 'type': 'static_library', |
36 'include_dirs': [ | 72 'include_dirs': [ |
37 '..', | 73 '..', |
38 ], | 74 ], |
39 'dependencies': [ | 75 'dependencies': [ |
40 '../base/base.gyp:base', | 76 '../base/base.gyp:base', |
41 ], | 77 ], |
42 'sources': [ | 78 'sources': [ |
43 'bookmarks/core/common/bookmark_constants.cc', | 79 'bookmarks/core/common/bookmark_constants.cc', |
44 'bookmarks/core/common/bookmark_constants.h', | 80 'bookmarks/core/common/bookmark_constants.h', |
45 'bookmarks/core/common/bookmark_pref_names.cc', | 81 'bookmarks/core/common/bookmark_pref_names.cc', |
46 'bookmarks/core/common/bookmark_pref_names.h', | 82 'bookmarks/core/common/bookmark_pref_names.h', |
47 ], | 83 ], |
48 }, | 84 }, |
49 ], | 85 ], |
50 } | 86 } |
OLD | NEW |