Chromium Code Reviews| Index: components/bookmarks_enhanced.gypi |
| diff --git a/components/bookmarks_enhanced.gypi b/components/bookmarks_enhanced.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..70e925d308201caa788f774e814382ab7b73dab4 |
| --- /dev/null |
| +++ b/components/bookmarks_enhanced.gypi |
| @@ -0,0 +1,35 @@ |
| +# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'targets': [ |
| + { |
| + 'target_name': 'bookmarks_enhanced', |
| + 'type': 'static_library', |
| + 'include_dirs': [ |
| + '..', |
| + ], |
| + 'dependencies': [ |
| + '../base/base.gyp:base', |
| + '../sql/sql.gyp:sql', |
| + '../ui/gfx/gfx.gyp:gfx', |
| + '../url/url.gyp:url_lib', |
| + ], |
| + 'conditions': [ |
| + ['OS=="android"', { |
|
sky
2014/05/06 16:14:20
I thought this code was for iOS too?
Kibeom Kim (inactive)
2014/05/07 00:09:46
I'll do ios as a separate CL. Also removed ios *.m
|
| + 'sources': [ |
| + 'bookmarks_enhanced/image_store.h', |
| + 'bookmarks_enhanced/image_store.cc', |
| + 'bookmarks_enhanced/image_store_util.h', |
| + 'bookmarks_enhanced/image_store_util_android.cc', |
| + 'bookmarks_enhanced/memory_image_store.cc', |
|
sky
2014/05/06 16:14:20
If memory_image_store is only for tests it should
Kibeom Kim (inactive)
2014/05/07 00:09:46
Done.
|
| + 'bookmarks_enhanced/memory_image_store.h', |
| + 'bookmarks_enhanced/persistent_image_store.cc', |
| + 'bookmarks_enhanced/persistent_image_store.h', |
| + ], |
| + }], |
| + ], |
| + }, |
| + ], |
| +} |