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

Side by Side Diff: components/enhanced_bookmarks.gypi

Issue 510543002: Introduce ItemPosition class for enhanced bookmarks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: 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': [
(...skipping 12 matching lines...) Expand all
23 'enhanced_bookmarks/enhanced_bookmark_utils.h', 23 'enhanced_bookmarks/enhanced_bookmark_utils.h',
24 'enhanced_bookmarks/image_store.cc', 24 'enhanced_bookmarks/image_store.cc',
25 'enhanced_bookmarks/image_store.h', 25 'enhanced_bookmarks/image_store.h',
26 'enhanced_bookmarks/image_store_util.cc', 26 'enhanced_bookmarks/image_store_util.cc',
27 'enhanced_bookmarks/image_store_util.h', 27 'enhanced_bookmarks/image_store_util.h',
28 'enhanced_bookmarks/image_store_util_ios.mm', 28 'enhanced_bookmarks/image_store_util_ios.mm',
29 'enhanced_bookmarks/metadata_accessor.cc', 29 'enhanced_bookmarks/metadata_accessor.cc',
30 'enhanced_bookmarks/metadata_accessor.h', 30 'enhanced_bookmarks/metadata_accessor.h',
31 'enhanced_bookmarks/persistent_image_store.cc', 31 'enhanced_bookmarks/persistent_image_store.cc',
32 'enhanced_bookmarks/persistent_image_store.h', 32 'enhanced_bookmarks/persistent_image_store.h',
33 'enhanced_bookmarks/stars_position.cc',
34 'enhanced_bookmarks/stars_position.h',
33 ], 35 ],
34 'conditions': [ 36 'conditions': [
35 ['OS=="android"', { 37 ['OS=="android"', {
36 'sources': [ 38 'sources': [
37 'enhanced_bookmarks/android/component_jni_registrar.cc', 39 'enhanced_bookmarks/android/component_jni_registrar.cc',
38 'enhanced_bookmarks/android/component_jni_registrar.h', 40 'enhanced_bookmarks/android/component_jni_registrar.h',
39 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.cc', 41 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.cc',
40 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.h', 42 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.h',
41 ], 43 ],
42 'dependencies': [ 44 'dependencies': [
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 ], 102 ],
101 'variables': { 103 'variables': {
102 'jni_gen_package': 'enhanced_bookmarks', 104 'jni_gen_package': 'enhanced_bookmarks',
103 }, 105 },
104 'includes': [ '../build/jni_generator.gypi' ], 106 'includes': [ '../build/jni_generator.gypi' ],
105 }, 107 },
106 ], 108 ],
107 }] 109 }]
108 ], 110 ],
109 } 111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698