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

Side by Side Diff: components/bookmarks.gypi

Issue 184663002: Omnibox: Make URLs of Bookmarks Searchable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ALL_MATCHES (in response to recent changes) Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | components/bookmarks/core/browser/bookmark_match.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_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 '../ui/base/ui_base.gyp:ui_base', 15 '../ui/base/ui_base.gyp:ui_base',
16 '../ui/gfx/gfx.gyp:gfx', 16 '../ui/gfx/gfx.gyp:gfx',
17 '../url/url.gyp:url_lib', 17 '../url/url.gyp:url_lib',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 'bookmarks/core/browser/bookmark_match.cc',
21 'bookmarks/core/browser/bookmark_match.h',
20 'bookmarks/core/browser/bookmark_node.cc', 22 'bookmarks/core/browser/bookmark_node.cc',
21 'bookmarks/core/browser/bookmark_node.h', 23 'bookmarks/core/browser/bookmark_node.h',
22 'bookmarks/core/browser/bookmark_prompt_prefs.cc', 24 'bookmarks/core/browser/bookmark_prompt_prefs.cc',
23 'bookmarks/core/browser/bookmark_prompt_prefs.h', 25 'bookmarks/core/browser/bookmark_prompt_prefs.h',
24 'bookmarks/core/browser/bookmark_service.h', 26 'bookmarks/core/browser/bookmark_service.h',
25 'bookmarks/core/browser/bookmark_title_match.cc',
26 'bookmarks/core/browser/bookmark_title_match.h',
27 ], 27 ],
28 }, 28 },
29 { 29 {
30 'target_name': 'bookmarks_core_common', 30 'target_name': 'bookmarks_core_common',
31 'type': 'static_library', 31 'type': 'static_library',
32 'include_dirs': [ 32 'include_dirs': [
33 '..', 33 '..',
34 ], 34 ],
35 'dependencies': [ 35 'dependencies': [
36 '../base/base.gyp:base', 36 '../base/base.gyp:base',
37 ], 37 ],
38 'sources': [ 38 'sources': [
39 'bookmarks/core/common/bookmark_constants.cc', 39 'bookmarks/core/common/bookmark_constants.cc',
40 'bookmarks/core/common/bookmark_constants.h', 40 'bookmarks/core/common/bookmark_constants.h',
41 'bookmarks/core/common/bookmark_pref_names.cc', 41 'bookmarks/core/common/bookmark_pref_names.cc',
42 'bookmarks/core/common/bookmark_pref_names.h', 42 'bookmarks/core/common/bookmark_pref_names.h',
43 ], 43 ],
44 }, 44 },
45 ], 45 ],
46 } 46 }
OLDNEW
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | components/bookmarks/core/browser/bookmark_match.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698