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

Side by Side Diff: components/bookmarks.gypi

Issue 259863007: Local salient image storage for enhanced bookmark experiment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minor bookmarks.gypi clean up 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_core_browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'bookmarks/core/browser/bookmark_prompt_prefs.cc', 50 'bookmarks/core/browser/bookmark_prompt_prefs.cc',
51 'bookmarks/core/browser/bookmark_prompt_prefs.h', 51 'bookmarks/core/browser/bookmark_prompt_prefs.h',
52 'bookmarks/core/browser/bookmark_service.h', 52 'bookmarks/core/browser/bookmark_service.h',
53 'bookmarks/core/browser/bookmark_storage.cc', 53 'bookmarks/core/browser/bookmark_storage.cc',
54 'bookmarks/core/browser/bookmark_storage.h', 54 'bookmarks/core/browser/bookmark_storage.h',
55 'bookmarks/core/browser/bookmark_utils.cc', 55 'bookmarks/core/browser/bookmark_utils.cc',
56 'bookmarks/core/browser/bookmark_utils.h', 56 'bookmarks/core/browser/bookmark_utils.h',
57 'bookmarks/core/browser/scoped_group_bookmark_actions.cc', 57 'bookmarks/core/browser/scoped_group_bookmark_actions.cc',
58 'bookmarks/core/browser/scoped_group_bookmark_actions.h', 58 'bookmarks/core/browser/scoped_group_bookmark_actions.h',
59 ], 59 ],
60 'conditions': [
61 ['OS=="android"', {
62 'sources': [
63 'bookmarks/core/browser/enhanced/image_store.h',
64 'bookmarks/core/browser/enhanced/image_store.cc',
65 'bookmarks/core/browser/enhanced/image_store_util.h',
66 'bookmarks/core/browser/enhanced/image_store_util_android.cc',
67 'bookmarks/core/browser/enhanced/memory_image_store.cc',
68 'bookmarks/core/browser/enhanced/memory_image_store.h',
69 'bookmarks/core/browser/enhanced/persistent_image_store.cc',
70 'bookmarks/core/browser/enhanced/persistent_image_store.h',
71 ],
72 }],
73 ]
60 }, 74 },
61 { 75 {
62 'target_name': 'bookmarks_core_common', 76 'target_name': 'bookmarks_core_common',
63 'type': 'static_library', 77 'type': 'static_library',
64 'include_dirs': [ 78 'include_dirs': [
65 '..', 79 '..',
66 ], 80 ],
67 'dependencies': [ 81 'dependencies': [
68 '../base/base.gyp:base', 82 '../base/base.gyp:base',
69 ], 83 ],
70 'sources': [ 84 'sources': [
71 'bookmarks/core/common/bookmark_constants.cc', 85 'bookmarks/core/common/bookmark_constants.cc',
72 'bookmarks/core/common/bookmark_constants.h', 86 'bookmarks/core/common/bookmark_constants.h',
73 'bookmarks/core/common/bookmark_pref_names.cc', 87 'bookmarks/core/common/bookmark_pref_names.cc',
74 'bookmarks/core/common/bookmark_pref_names.h', 88 'bookmarks/core/common/bookmark_pref_names.h',
75 ], 89 ],
76 }, 90 },
77 ], 91 ],
78 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698