OLD | NEW |
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 16 matching lines...) Expand all Loading... |
27 'enhanced_bookmarks/enhanced_bookmark_utils.h', | 27 'enhanced_bookmarks/enhanced_bookmark_utils.h', |
28 'enhanced_bookmarks/image_store.cc', | 28 'enhanced_bookmarks/image_store.cc', |
29 'enhanced_bookmarks/image_store.h', | 29 'enhanced_bookmarks/image_store.h', |
30 'enhanced_bookmarks/image_store_util.cc', | 30 'enhanced_bookmarks/image_store_util.cc', |
31 'enhanced_bookmarks/image_store_util.h', | 31 'enhanced_bookmarks/image_store_util.h', |
32 'enhanced_bookmarks/image_store_util_ios.mm', | 32 'enhanced_bookmarks/image_store_util_ios.mm', |
33 'enhanced_bookmarks/metadata_accessor.cc', | 33 'enhanced_bookmarks/metadata_accessor.cc', |
34 'enhanced_bookmarks/metadata_accessor.h', | 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 'enhanced_bookmarks/stars_position.cc', |
| 38 'enhanced_bookmarks/stars_position.h', |
37 ], | 39 ], |
38 'conditions': [ | 40 'conditions': [ |
39 ['OS=="android"', { | 41 ['OS=="android"', { |
40 'sources': [ | 42 'sources': [ |
41 'enhanced_bookmarks/android/component_jni_registrar.cc', | 43 'enhanced_bookmarks/android/component_jni_registrar.cc', |
42 'enhanced_bookmarks/android/component_jni_registrar.h', | 44 'enhanced_bookmarks/android/component_jni_registrar.h', |
43 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.cc', | 45 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.cc', |
44 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.h', | 46 'enhanced_bookmarks/android/enhanced_bookmarks_bridge.h', |
45 ], | 47 ], |
46 'dependencies': [ | 48 'dependencies': [ |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 ], | 106 ], |
105 'variables': { | 107 'variables': { |
106 'jni_gen_package': 'enhanced_bookmarks', | 108 'jni_gen_package': 'enhanced_bookmarks', |
107 }, | 109 }, |
108 'includes': [ '../build/jni_generator.gypi' ], | 110 'includes': [ '../build/jni_generator.gypi' ], |
109 }, | 111 }, |
110 ], | 112 ], |
111 }] | 113 }] |
112 ], | 114 ], |
113 } | 115 } |
OLD | NEW |