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

Side by Side Diff: components/enhanced_bookmarks.gypi

Issue 476573004: Set version field when changes are made to enhanced bookmarks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Added flags TODO Created 6 years, 3 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': 'enhanced_bookmarks', 8 'target_name': 'enhanced_bookmarks',
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 '../sql/sql.gyp:sql', 16 '../sql/sql.gyp:sql',
17 '../ui/gfx/gfx.gyp:gfx', 17 '../ui/gfx/gfx.gyp:gfx',
18 '../url/url.gyp:url_lib', 18 '../url/url.gyp:url_lib',
19 'bookmarks_browser', 19 'bookmarks_browser',
20 'enhanced_bookmarks_proto', 20 'enhanced_bookmarks_proto',
21 'keyed_service_core', 21 'keyed_service_core',
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 'enhanced_bookmarks/bookmark_image_service.cc', 24 'enhanced_bookmarks/bookmark_image_service.cc',
25 'enhanced_bookmarks/bookmark_image_service.h', 25 'enhanced_bookmarks/bookmark_image_service.h',
26 'enhanced_bookmarks/enhanced_bookmark_model.cc',
27 'enhanced_bookmarks/enhanced_bookmark_model.h',
26 'enhanced_bookmarks/enhanced_bookmark_utils.cc', 28 'enhanced_bookmarks/enhanced_bookmark_utils.cc',
27 'enhanced_bookmarks/enhanced_bookmark_utils.h', 29 'enhanced_bookmarks/enhanced_bookmark_utils.h',
28 'enhanced_bookmarks/image_store.cc', 30 'enhanced_bookmarks/image_store.cc',
29 'enhanced_bookmarks/image_store.h', 31 'enhanced_bookmarks/image_store.h',
30 'enhanced_bookmarks/image_store_util.cc', 32 'enhanced_bookmarks/image_store_util.cc',
31 'enhanced_bookmarks/image_store_util.h', 33 'enhanced_bookmarks/image_store_util.h',
32 'enhanced_bookmarks/image_store_util_ios.mm', 34 'enhanced_bookmarks/image_store_util_ios.mm',
33 'enhanced_bookmarks/metadata_accessor.cc',
34 'enhanced_bookmarks/metadata_accessor.h',
35 'enhanced_bookmarks/persistent_image_store.cc', 35 'enhanced_bookmarks/persistent_image_store.cc',
36 'enhanced_bookmarks/persistent_image_store.h', 36 'enhanced_bookmarks/persistent_image_store.h',
37 ], 37 ],
38 'conditions': [ 38 'conditions': [
39 ['OS=="android"', { 39 ['OS=="android"', {
40 'sources': [ 40 'sources': [
41 'enhanced_bookmarks/android/component_jni_registrar.cc', 41 'enhanced_bookmarks/android/component_jni_registrar.cc',
42 'enhanced_bookmarks/android/component_jni_registrar.h', 42 'enhanced_bookmarks/android/component_jni_registrar.h',
43 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.cc', 43 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.cc',
44 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.h', 44 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.h',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 ], 104 ],
105 'variables': { 105 'variables': {
106 'jni_gen_package': 'enhanced_bookmarks', 106 'jni_gen_package': 'enhanced_bookmarks',
107 }, 107 },
108 'includes': [ '../build/jni_generator.gypi' ], 108 'includes': [ '../build/jni_generator.gypi' ],
109 }, 109 },
110 ], 110 ],
111 }] 111 }]
112 ], 112 ],
113 } 113 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698