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_browser', | 8 'target_name': 'bookmarks_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', | 15 '../net/net.gyp:net', |
16 '../third_party/icu/icu.gyp:icuuc', | 16 '../third_party/icu/icu.gyp:icuuc', |
17 '../ui/base/ui_base.gyp:ui_base', | 17 '../ui/base/ui_base.gyp:ui_base', |
18 '../ui/gfx/gfx.gyp:gfx', | 18 '../ui/gfx/gfx.gyp:gfx', |
19 '../url/url.gyp:url_lib', | 19 '../url/url.gyp:url_lib', |
20 'bookmarks_common', | 20 'bookmarks_common', |
21 'components_strings.gyp:components_strings', | 21 'components_strings.gyp:components_strings', |
22 'favicon_base', | 22 'favicon_base', |
| 23 'keyed_service_core', |
| 24 'pref_registry', |
23 'query_parser', | 25 'query_parser', |
24 'startup_metric_utils', | 26 'startup_metric_utils', |
25 'pref_registry', | |
26 ], | 27 ], |
27 'sources': [ | 28 'sources': [ |
28 'bookmarks/browser/base_bookmark_model_observer.cc', | 29 'bookmarks/browser/base_bookmark_model_observer.cc', |
29 'bookmarks/browser/base_bookmark_model_observer.h', | 30 'bookmarks/browser/base_bookmark_model_observer.h', |
30 'bookmarks/browser/bookmark_client.cc', | 31 'bookmarks/browser/bookmark_client.cc', |
31 'bookmarks/browser/bookmark_client.h', | 32 'bookmarks/browser/bookmark_client.h', |
32 'bookmarks/browser/bookmark_codec.cc', | 33 'bookmarks/browser/bookmark_codec.cc', |
33 'bookmarks/browser/bookmark_codec.h', | 34 'bookmarks/browser/bookmark_codec.h', |
34 'bookmarks/browser/bookmark_expanded_state_tracker.cc', | 35 'bookmarks/browser/bookmark_expanded_state_tracker.cc', |
35 'bookmarks/browser/bookmark_expanded_state_tracker.h', | 36 'bookmarks/browser/bookmark_expanded_state_tracker.h', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 'conditions': [ | 99 'conditions': [ |
99 ['use_x11==1', { | 100 ['use_x11==1', { |
100 'dependencies': [ | 101 'dependencies': [ |
101 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_platfo
rm', | 102 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_platfo
rm', |
102 ], | 103 ], |
103 }], | 104 }], |
104 ], | 105 ], |
105 }, | 106 }, |
106 ], | 107 ], |
107 } | 108 } |
OLD | NEW |