OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 'target_name': 'bookmarks_enhanced', | |
9 'type': 'static_library', | |
10 'include_dirs': [ | |
11 '..', | |
12 ], | |
13 'dependencies': [ | |
14 '../base/base.gyp:base', | |
15 '../sql/sql.gyp:sql', | |
16 '../ui/gfx/gfx.gyp:gfx', | |
17 '../url/url.gyp:url_lib', | |
18 ], | |
19 'conditions': [ | |
20 ['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
| |
21 'sources': [ | |
22 'bookmarks_enhanced/image_store.h', | |
23 'bookmarks_enhanced/image_store.cc', | |
24 'bookmarks_enhanced/image_store_util.h', | |
25 'bookmarks_enhanced/image_store_util_android.cc', | |
26 '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.
| |
27 'bookmarks_enhanced/memory_image_store.h', | |
28 'bookmarks_enhanced/persistent_image_store.cc', | |
29 'bookmarks_enhanced/persistent_image_store.h', | |
30 ], | |
31 }], | |
32 ], | |
33 }, | |
34 ], | |
35 } | |
OLD | NEW |