Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: components/bookmarks.gypi

Issue 284893003: Move bookmarks/core/... to bookmarks/... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing errors reported by presubmit Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_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_core_common', 20 'bookmarks_common',
21 'components_strings.gyp:components_strings', 21 'components_strings.gyp:components_strings',
22 'favicon_base', 22 'favicon_base',
23 'query_parser', 23 'query_parser',
24 'startup_metric_utils', 24 'startup_metric_utils',
25 'pref_registry', 25 'pref_registry',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 'bookmarks/core/browser/base_bookmark_model_observer.cc', 28 'bookmarks/browser/base_bookmark_model_observer.cc',
29 'bookmarks/core/browser/base_bookmark_model_observer.h', 29 'bookmarks/browser/base_bookmark_model_observer.h',
30 'bookmarks/core/browser/bookmark_client.cc', 30 'bookmarks/browser/bookmark_client.cc',
31 'bookmarks/core/browser/bookmark_client.h', 31 'bookmarks/browser/bookmark_client.h',
32 'bookmarks/core/browser/bookmark_codec.cc', 32 'bookmarks/browser/bookmark_codec.cc',
33 'bookmarks/core/browser/bookmark_codec.h', 33 'bookmarks/browser/bookmark_codec.h',
34 'bookmarks/core/browser/bookmark_expanded_state_tracker.cc', 34 'bookmarks/browser/bookmark_expanded_state_tracker.cc',
35 'bookmarks/core/browser/bookmark_expanded_state_tracker.h', 35 'bookmarks/browser/bookmark_expanded_state_tracker.h',
36 'bookmarks/core/browser/bookmark_index.cc', 36 'bookmarks/browser/bookmark_index.cc',
37 'bookmarks/core/browser/bookmark_index.h', 37 'bookmarks/browser/bookmark_index.h',
38 'bookmarks/core/browser/bookmark_match.cc', 38 'bookmarks/browser/bookmark_match.cc',
39 'bookmarks/core/browser/bookmark_match.h', 39 'bookmarks/browser/bookmark_match.h',
40 'bookmarks/core/browser/bookmark_model.cc', 40 'bookmarks/browser/bookmark_model.cc',
41 'bookmarks/core/browser/bookmark_model.h', 41 'bookmarks/browser/bookmark_model.h',
42 'bookmarks/core/browser/bookmark_model_observer.h', 42 'bookmarks/browser/bookmark_model_observer.h',
43 'bookmarks/core/browser/bookmark_node.cc', 43 'bookmarks/browser/bookmark_node.cc',
44 'bookmarks/core/browser/bookmark_node.h', 44 'bookmarks/browser/bookmark_node.h',
45 'bookmarks/core/browser/bookmark_node_data.cc', 45 'bookmarks/browser/bookmark_node_data.cc',
46 'bookmarks/core/browser/bookmark_node_data.h', 46 'bookmarks/browser/bookmark_node_data.h',
47 'bookmarks/core/browser/bookmark_node_data_ios.cc', 47 'bookmarks/browser/bookmark_node_data_ios.cc',
48 'bookmarks/core/browser/bookmark_node_data_mac.cc', 48 'bookmarks/browser/bookmark_node_data_mac.cc',
49 'bookmarks/core/browser/bookmark_node_data_views.cc', 49 'bookmarks/browser/bookmark_node_data_views.cc',
50 'bookmarks/core/browser/bookmark_pasteboard_helper_mac.h', 50 'bookmarks/browser/bookmark_pasteboard_helper_mac.h',
51 'bookmarks/core/browser/bookmark_pasteboard_helper_mac.mm', 51 'bookmarks/browser/bookmark_pasteboard_helper_mac.mm',
52 'bookmarks/core/browser/bookmark_service.h', 52 'bookmarks/browser/bookmark_service.h',
53 'bookmarks/core/browser/bookmark_storage.cc', 53 'bookmarks/browser/bookmark_storage.cc',
54 'bookmarks/core/browser/bookmark_storage.h', 54 'bookmarks/browser/bookmark_storage.h',
55 'bookmarks/core/browser/bookmark_utils.cc', 55 'bookmarks/browser/bookmark_utils.cc',
56 'bookmarks/core/browser/bookmark_utils.h', 56 'bookmarks/browser/bookmark_utils.h',
57 'bookmarks/core/browser/scoped_group_bookmark_actions.cc', 57 'bookmarks/browser/scoped_group_bookmark_actions.cc',
58 'bookmarks/core/browser/scoped_group_bookmark_actions.h', 58 'bookmarks/browser/scoped_group_bookmark_actions.h',
59 ], 59 ],
60 }, 60 },
61 { 61 {
62 'target_name': 'bookmarks_core_common', 62 'target_name': 'bookmarks_common',
63 'type': 'static_library', 63 'type': 'static_library',
64 'include_dirs': [ 64 'include_dirs': [
65 '..', 65 '..',
66 ], 66 ],
67 'dependencies': [ 67 'dependencies': [
68 '../base/base.gyp:base', 68 '../base/base.gyp:base',
69 ], 69 ],
70 'sources': [ 70 'sources': [
71 'bookmarks/core/common/bookmark_constants.cc', 71 'bookmarks/common/bookmark_constants.cc',
72 'bookmarks/core/common/bookmark_constants.h', 72 'bookmarks/common/bookmark_constants.h',
73 'bookmarks/core/common/bookmark_pref_names.cc', 73 'bookmarks/common/bookmark_pref_names.cc',
74 'bookmarks/core/common/bookmark_pref_names.h', 74 'bookmarks/common/bookmark_pref_names.h',
75 ], 75 ],
76 }, 76 },
77 { 77 {
78 'target_name': 'bookmarks_core_test_support', 78 'target_name': 'bookmarks_test_support',
79 'type': 'static_library', 79 'type': 'static_library',
80 'include_dirs': [ 80 'include_dirs': [
81 '..', 81 '..',
82 ], 82 ],
83 'dependencies': [ 83 'dependencies': [
84 '../base/base.gyp:base', 84 '../base/base.gyp:base',
85 '../ui/events/platform/events_platform.gyp:events_platform', 85 '../ui/events/platform/events_platform.gyp:events_platform',
86 '../url/url.gyp:url_lib', 86 '../url/url.gyp:url_lib',
87 'bookmarks_core_browser', 87 'bookmarks_browser',
88 ], 88 ],
89 'sources': [ 89 'sources': [
90 'bookmarks/core/test/bookmark_test_helpers.cc', 90 'bookmarks/test/bookmark_test_helpers.cc',
91 'bookmarks/core/test/bookmark_test_helpers.h', 91 'bookmarks/test/bookmark_test_helpers.h',
92 'bookmarks/core/test/test_bookmark_client.cc', 92 'bookmarks/test/test_bookmark_client.cc',
93 'bookmarks/core/test/test_bookmark_client.h', 93 'bookmarks/test/test_bookmark_client.h',
94 ], 94 ],
95 'conditions': [ 95 'conditions': [
96 ['use_x11==1', { 96 ['use_x11==1', {
97 'dependencies': [ 97 'dependencies': [
98 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_platfo rm', 98 '../ui/events/platform/x11/x11_events_platform.gyp:x11_events_platfo rm',
99 ], 99 ],
100 }], 100 }],
101 ], 101 ],
102 }, 102 },
103 ], 103 ],
104 } 104 }
OLDNEW
« no previous file with comments | « chrome/test/base/ui_test_utils.cc ('k') | components/bookmarks/browser/base_bookmark_model_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698